Hi, i am receiving below error on executing my custom fall back
ERROR:rasa_core.processor:Encountered an exception while running action ‘action_default_fallback’. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code.
my fall back action code: class ActionDefaultFallback(Action): def name(self): return “action_default_fallback”
def run(self, dispatcher, tracker, domain):
dispatcher.utter_template("utter_unclear", tracker,
silent_fail=True)
return [ActionReverted()]
can you please help on this