- Why do we use the function - name and run in Action class.
- When they get called in sequence.
- What all are their functionality.
class ActionGetStarted(Action): “”“Returns the Disclaimer utterance dependent on the intent”""
def name(self):
return "action_get_started"
def run(
self,
dispatcher: CollectingDispatcher,
tracker: Tracker,
domain: Dict[Text, Any]
) -> List["Event"]:
return []