How to set default action in Rasa
How to set default action in Rasa Using vanilla Rasa NLU will cause Rasa core to make use of the outputs of the highest probability of an intent or entity value. In other words, even if the probability of an intent is low, and yet it is the highest of all the options, it is still taken by Rasa core as the intent the user is conveying. How do I make it so that Rasa core performs a default action if the probability of the maximum probability intent provided by the NLU is below a certain threshold, say 5%? 1 Answer 1 This feature was added recently and is called Fallback Policy . See documentation here: https://core.rasa.com/patterns.html?highlight=fallback%20policy#fallback-default-actions By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of...