Hi everyone, I had sucessfully integrated rasa webchat framework with my website. I created a py file and run that file to run that bot. But i am clueless beacuse i need to run the actions.py file when I run the bot.py file. So please help me to run the actions.py when I run the bot.py. Please help me its urgent. Thank you so much for your help in advance.
I think you’ll need an endpoint Server. You can start it with a command like
python -m rasa_core_sdk.endpoint --actions actions
if you start your rasa core you need to add an endpoints.yml that adresses your endpoint server. Like:
action_endpoint:
url: "http://localhost:5055/webhook"
This works for me.
Thanks a lot kengelmann. It worked for me.