Hi,I have a question regarding mapping policy and using forms.
In my case I have a form which get filled with 3 slots. And I have an intent called “Are_you_a_bot” which has trigger {action_give_bot_answer}.
What happens if I am in the middle of a form and then the user asks “are you a bot?”. In my case the mapped action jumps in, but it does not return to the form after it. I cannot make a story which handles the whole path because intents, which have trigger, cannot be used in stories.
What is the best way to handle it?
@lena does your action return a UserUtteranceReverted() event as well? The bot actually is still in the form after it’s executed, but it doesn’t re-ask the question at this point. You could definitely try out what @Gehova is suggesting as well
@akelad Thank you for your suggestions. Even when my action returns UserUtteranceReverted(), the form doesn’t ask for the next slot, it ends up with action_listen.
@Gehova: Thank you for your suggestions as well. This returns me back to the form!