I am able to run single action in my bot:
python -m rasa_core_sdk.endpoint --actions actions
but I want to run more than one custom action My actions.py file look like:
class ActionLogin(Action):
def name(self):
def run(self, dispatcher, tracker,domain):
Login Code.... #(it will give me sessionId)
class ActionWork(Action):
def name(self):
#######
def run(self, dispatcher, tracker,domain):
if sessionId == None:
_**redirect to Login**_
else:
WorkPage.........
so I have created more than one class in actions.py file but I am having an issue with invoking class. I need to redirect to Login in Work action. Can anyone help me with this?
How can I run more than one action in rasa_core 0.11.x?