In Dialogflow, I am trying to detect an alphanumeric sequence that matches this regular expression: [A-Za-z][0-9]{7}[0-9A-Za-z] (one letter + 7 digits + 1 alphanumeric), but although it works with text tests, when I try to do it using speech it fails.
I have followed the process described at the end of this documentation (English language): https://cloud.google.com/dialogflow/docs/speech-adaptation
So, I have created my entity using a regular expression, and then an intent with 20 training phrases that match the code. Finally, I have enabled the Auto Speech Adaptation in the agent configuration.
Here you have my test to detect this code: V31701923
- Using text (working)
- Using speech (not working)
Thank you!