Hi,
I just started working on a PoC to implement a chatbot using Rasa. I was able to build I simple chatbot which executes custom actions. The custom actions work fine when I run them from the command line. I tried implementing a UI using https://github.com/Alexmhack/Django-Rasa-Bot which uses https://github.com/mrbot-ai/rasa-webchat for the chat UI.
The issue I am facing is that when I chat with the bot via the webchat UI, none of the custom actions are being executed while they work fine via the command line.
My configuration is as below: Rasa --version = 1.1.3
credentials.yml
rest:
socketio: user_message_evt: user_uttered bot_message_evt: bot_uttered session_persistence: false
rasa: url: “http://localhost:5002/api”
endpoints.yml
action_endpoint: url: “http://localhost:5055/webhook”
Command to start action endpoint server - rasa run --debug --endpoints endpoints.yml -m “rasachat/models/current” --enable-api --credentials credentials.yml actions --cors “*”
Please let me know if I have missed anything and how I can resolve this issue.