Couldn’t create message for response:
This was the error I was getting
My action file:
class AskForSlotAction(Action):
def name(self) -> Text:
return "action_ask_can_number"
def run(
self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
) -> List[EventType]:
dispatcher.utter_message(text ="What cuisine?")
return []