Hi,
I have two stories like these
Story 1
- SoftwareInstall
- action_which_software_install
- slot{“software_selected”: null}
and
Story 2
- SoftwareInstall
- action_software_install
- slot{“software_selected”: “skype”}
These two stories have two different functionalities i.e
Story 1 is for the case when user type “i want to install a software” and
Story 2 is when user type “i want to install skype”
I have both utterances in SoftwareInstall intent. In RASA-DEMO project i have seen single intent with different actions implemented using stories , i tried same but it is not working bot is only taking up action_software_install .I have trained the bot with at least 10-15 stories with both use cases
i know i can map these responses using slot value but i want my stories to handle this flow!
Thanks!