Currently, I am using Rasa 2.x version. I have this use case where I need to capture the last utterance given by the user and fill it in a slot without mapping it to any other intents.
In Rasa 3.x there is a way to do it using from_text.
Piggybacking on here… but it seems relevant. How does one actually make use of this slot to fill it with any text?
Can I write a story like:
- story: my story
steps:
- intent: 4-prompt
- action: utter_ask_question
- "FILL SLOT HERE - DON'T TRY TO MAP TO AN INTENT AT ALL"
- action: utter_interesting_answer
Or does the intent need to be mapped before we can access the contents of this slot?