Is there a way to handle an intent in stories.md so it gets triggered at any point in a conversation?
My stories.md has about 1000 lines now and I am trying to establish an "help" intent that gets triggered at any point in a conversation without making my stories data much more complex.
I have included a single story like:
## help intent
* help
- utter_help
But that seems to work in only 2/3 of all situations. Often the bot continues with another given schema and ignores the "help" intent, eventually the help intent gets triggering in a second try…
I work with Rasa Core 0.11.6 and Dialogflow for NLU.
And the answer was the augmenation will do the thing?
How can you do that such that the tracker is properly filled such you trigger a follow up action when intent is help?
So, my guess would using a custom action? But then you have to write aftereach input this custom action in stories which looks for intent help? Is this correct @akelad?