Alexmhack / Django-Rasa-Bot

Integrating Rasa Core with Django backend and finally using Webchat for chatbot user interface
32 stars 25 forks source link

Bot not executing custom actions #11

Closed naagbharath closed 5 years ago

naagbharath commented 5 years ago

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?

Alexmhack commented 5 years ago

have you started the custom actions server, see more here

naagbharath commented 5 years ago

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

Alexmhack commented 5 years ago

Have you solved your errors?