Hello guys,
I would like to simulate new user message from custom action like this:
from rasa_core_sdk.events UserUttered
class ActionFollowUpWeather(Action):
def name(self):
return "action_followup_weather"
def run(self, dispatcher, tracker, domain):
return [UserUttered("/ask_weather", {
"intent": {"confidence": 1, "name": "ask_weather"},
"entities": []
})]
to be able to switch to different scenario from stories. I thought UserUttered would trigger _handle_message_with_tracker() from rasa_core/processor.py and it triggers tracker.update(...) what will cause new turn in conversation. But apparently it can’t get there.
Is something like this possible?
Thanks.