Connecting RASA(version 12) to UI

Hi, I connected this bot to scalableminds’ chatroom just as it is described here: Github Repo

After cloning the repository execute yarn install, yarn build and yarn serve. (Get yarn here) Your HTML frontend be available on localhost:8080 (or whatever the console will show you).

Usage with a standard Rasa Core project

  • Copy rasa_utils to your project
  • Install the Python dependencies from rasa_utils/requirements.txt
  • Run your bot with python -m rasa_utils.bot -d models/current/dialogue -u models/current/nlu
  • The bot server will be available at 0.0.0.0:5005

You might have to change the paths for your dialogue model and the nlu model.

But: I am facing another issue (because of which i actualy visited the community forum :wink: ): I can’t run any custom action using the html front end.

2019-01-31 09:43:08 ERROR rasa_core.actions.action - Failed to run custom action ‘action_order’. Action server responded with a non 200 status code of 404. Make sure your action server properly runs actions and returns a 200 once the action is executed. Error: 404 Client Error: NOT FOUND for url: http://localhost:5055/webhook/ 2019-01-31 09:43:08 ERROR rasa_core.processor - Encountered an exception while running action ‘action_order’. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code.

There is no further description of this exception shown in the console. The action endpoint simply answers

127.0.0.1 - - [2019-01-31 09:43:08] “POST /webhook/ HTTP/1.1” 404 342 0.017005

Please let me know if you are facing the same issue.