I am trying to use the two stage fallback policy as mentioned in the rasa-demo but it doesn’t behave as expected. I used interactive learning to see the action sequence and here is what I found after an input with low nlu confidence,
action_default_ask_affirmation
action_listen
user input: yes
classified as affirm
action_revert_fallback_events
action_default_fallback
which is not the flow mentioned in docs as it should continue after yes as it was originally well classified, same happens with “deny” it runs the action_default_fallback from the first time instead of running action_default_ask_rephrase
i didn’t write any custom actions or stories for the two satge fall back policy … i just wanted to run it with the default messages … should I write stories or actions to make it work??
i followed the example in rasa-demo … they didn’t write stories for it… do you have any example or steps in how to make it work?