Hi Team,
I have a case. I want to validate the bot’s dynamic response. eg.
#bot
Hello, Type 1 to continue
#me
1
<probable bot response 1>
#bot
I am a chatbot, type 1 to continue.
<probable bot response 2>
#bot
Thanks.
I want to assert and dynamically switch to the above. The probability of this stage to come is random and there is no pre-condition for that as it is backend driven.
I have used Utterances mechanism and it is working fine for the assertion point of view but if you closely observe <probable bot response 1> it is asking some input from the user.
Let’s say bot went in to that route, I validated the message using utterence, how can I then proceed with the user’s input??
Is there a way to achieve this??
abc.convo.txt
#me
hi
#bot
hello, type 1 to continue
#me
1
#bot
UTT_OPTIN
UTT_OPTIN.utterence.txt
UTT_OPTIN
press 1 to optin
press 2 to optout
Thanks