I use rasa for a little try, but some question I don’t understand.
when I run rasa, this actions server can’t used.
my actions python code:class ActionRestart(Action):
def name(self):
return 'action_restarted'
def run(self, dispatcher, tracker, domain):
return [Restarted()]
class ActionSlotReset(Action):
def name(self):
return 'action_slot_reset'
def run(self, dispatcher, tracker, domain):
return [AllSlotsReset()]
and I see the doc in https://rasa.com/docs/core/customactions/ action_restart is default actions. Can someone help me solve this problem?