Hi everyone, I am working on a Rasa-Chatbot and currently I am working on a little tutorial for my team on stories, I wondered, if it is possible to combine different stories with each other, in order to keep the code clean and readable. I thought about something like this:
story: greet-and-open-convo
- action: …
- intent: …
- action: …
- intent: …
story: solve-problem
- story: greet-and-open-convo # all four steps are called
- action: …
- intent: …
- action: …
Can I do something like that, or am I writing a custom-python-script to call a story in another story?
Thank you and best <3