Hi @MetcalfeTom.
I don’t see how to send a message to rasa that causes output of action to go to connected output channel. Here is my configuration:
I have a rasa and action server running. There is a single action (action_hello_world) which just returns “Hello world.”
I start the rasa chatbot (using sockets.io). From this, I get sender_id.
Now I want to call some endpoint that will force Rasa to send “Hello world.” to the chatbot.
I have tried to POST /conversations/{id}/execute
And indeed this executes the action, but returns results to the requester (e.g., Postman) and does not send to current chatbot conversation. I read the description and that is the correct behavior.
So what do I call to have output go to conversation instead of caller?