I am creating a bot to accept user responses on their spending pattern and then displaying it back as insights. I can’t seem to find a way to create something like ,
User : I want to store some data Bot : sure, go ahead User : I spent 100 on grocery today at 4pm Bot : cool , stored it
Now the query is, how do I do it without classifying intent of any of the numbers/words on the sentence. I understand in the example I gave, it’s easy to classify it as intent by mentioning “I spent” and storing amount and category as slots.
But I want to know if I can accept the entire sentence on its own from actions(or some other feature) with no classification.
One more example:
If user says “Hey”, the model shouldn’t classify under “greet” and choose a story path , just during this step and blindly just accept the response.
Thanks in advance