Rasa Version : 2.8.6
Minimum Compatible Version: 2.8.0
Rasa SDK Version : 2.8.2
Rasa X Version : None
Python Version : 3.7.10
Operating System : Linux-5.4.0-81-generic-x86_64-with-debian-bullseye-sid
Python Path : /opt/tljh/user/bin/python
@nik202 thank you it works. but i would like to call personalized action_default_fallaback in actions.py and it does not work for me using rasa 2.8. Any idea please ?
@Asmacats Nice, please close this thread as a solution for others and its should work like this, but if its not working in rasa 2.8.X may be they are working something on the code at backend as we are playing for rasa 3.0 soon.
Try:
In domain.yml
actions:
- action_default_fallback
In action.py
class ActionDefaultFallback(Action):
def name(self):
return "action_default_fallback"
def run(self, dispatcher, tracker, domain):
dispatcher.utter_message("Sorry, I couldn't understand.")
I know you have seen this link but as for ref only : Fallback and Human Handoff
I would recommend please see it again the code and syntax Good Luck!