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 ): 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
hey @Prabha you can use RestInput Channel to connect your bot to HTML frontend, you can read it here : https://rasa.com/docs/core/connectors/#restinput
and if you want the code for connecting to custom UI(HTML Frontend), I have created a custom UI you can get details here :
Hey @Prabha. The suggestions above should get you where you want to go. You can also check out the Rasa Webchat - a great contribution from our community. I wrote a little guide on how to use it in practice here.