Rasa run actions no responce

Hi, I follow the steps from Tutorial: Building Assistants with docker, but when running for the rasa run actions, the program just show below two lines and stop there without continue. 2020-02-21 08:58:03 INFO rasa_sdk.endpoint - Starting action endpoint server… 2020-02-21 08:58:04 INFO rasa_sdk.executor - Registered function for ‘sales_form’.

and in another terminal, when I run the rasa shell, the error code of : Couldn’t connect to the server at ‘http://localhost:5055/webhook

I did include the below code in config.yml file. action_endpoint: url: “http://localhost:5055/webhook

Appreciate someone can help on this.

2 Likes

Even I have the same issue…Can someone help us

If you are following that tutorial in docker some of the endpoints will be different. You will have to have a docker-compose setup to run the two separate services, you can see information how to do so here. Deploying your Rasa Assistant

Notice how the endpoint changes to the service name instead of localhost:

action_endpoint:
  url: http://action_server:5055/webhook

I am not using any docker file. Just trying to run the rasa run actions in local machine itself, but still its getting stuck.