Rasa version: 1.3.9
Python version: 3.7
Issue:
My first question is for the following story:
happy path
- greet
- utter_greet
- mood_great
- utter_happy
should users only be able to trigger the utter_happy action if they have first triggered
the utter_greet action?
My second question is I am trying to use the Rasa apis to predict what the next action is in a story. I’m using the following API’s in order to try and achieve this:
Parse the message using the Rasa model (message hello to trigger utter_greet)
https://rasa.com/docs/rasa/api/http-api/#operation/parseModelMessage
Add the message to a tracker https://rasa.com/docs/rasa/api/http-api/#operation/addConversationMessage
Predict the next action https://rasa.com/docs/rasa/api/http-api/#operation/predictConversationAction
However, the response from the predict next action API does seem to predict the next action,
which I would expect to be utter_happy, but it is instead utter_greet.
Am I using the api’s incorrectly? Or have I misunderstood their purpose?
NOTE: I can provide more detail and examples of my api requests if required.