I’m trying to get Rasa working, coming over from using Dialogflow for a while now.
Sadly I have not as of yet found a REST route which adds a message to the current conversation and returns the interpreted intent and extracted entities.
The only two routes come close to my use case are:
/model/parse : Which does not add the message to the conversation
and
/rest/wekbook: Which does not return the intent and entities but only the parameters.
Would one of you be so kind and direct me to the right direction where I can find the route?
The endpoint /model/parse only predicts the entities and the intent. The conversation history is not needed for that. Only the given text is relevant. So, our NLU model is independent from the conversation history.
If you want to predict the next action, e.g. what should the bot do next, the conversation history is needed and also considered.