Alexmhack/Django-Rasa-Bot

Bot not executing custom actions

naagbharath opened this issue · 3 comments

Hi,
I just started working on a PoC to implement a chatbot using Rasa. I was able to build a simple chatbot which executes custom actions. The custom actions work fine when I run them from the command line but do not work when I use the webchat UI, only the utter actions work.
Do I need to make any additional configurations for this?

have you started the custom actions server, see more here

Yes I have. The custom actions work fine from the command line.
My configuration is as below:

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 “*”

Have you solved your errors?