Hi,
I run RASA X 1.1.1 on a docker on my Mac. I use rasactl connect rasa to connect a rasa server to rasa x. When I start with “rasactl connect rasa” everything works fine.
As I want to run an action server on localhost as well I start
rasa run actions
in another terminal:
2022-06-01 22:50:53 INFO rasa_sdk.endpoint - Starting action endpoint server… 2022-06-01 22:50:53 INFO rasa_sdk.executor - Registered function for ‘action_hello_world’. 2022-06-01 22:50:53 INFO rasa_sdk.endpoint - Action endpoint is up and running on http://0.0.0.0:5055
I use the following entry in endpoints.yml:
action_endpoint: url: “http://0.0.0.0:5055/webhook”
When I start the rasa server now with:
rasactl connect rasa --extra-args="–endpoints=endpoints.yml"
then after entering text in “Talk to your bot”, rasa X displays my input, shows the icon indicating that it is processing my input and hangs. It never prompts a response.
So, how can I use custom actions in my model and test it using Rasa X?
Any help is appreciated!
Bernd