Reputation: 181
I am currently making an inteligent assistant with DialogFlow that takes your table reservation for an italian restaurant.
When the reservation its done it shows you a 6 character hexadecimal number:
I am trying to do a 'reservation check' intent, where the bot will ask your reservation code, and if its correct, it will show you the data of the reservation (stored inside a string array when the reservation was done)
The problem is that no existing entity seems to recognize hexadecimal numbers, and i can't make a new entity that includes all possible combinations of a random generator.
Is there anyway i can make this work? Should i go for another way of validation?
Upvotes: 2
Views: 87
Reputation: 21
You can use:
reservation code @sys.any
as the Training Phrase and put it in separate context to ensure better matching.
Upvotes: 2