Hi,
I am new to RASA and trying to get familiar with it using RASAX. I have a problem understanding how RASA handles repeated intents. For example, if I greet the bot multiple times, it does not respond. I have a simple story like this
Greet
- greet
- utter_welcome
check_user_input
Register Warranty
check_user_input
- register_warranty
- utter_enter_serial_number
check_good_bye
Bye
check_user_input check_good_bye
- good_bye
- utter_goodbye
- action_restart
When I start a conversation and say Hi, the bot responds as expected, but if I say Hi again, it responds with default_fallback. How can I handle such situation? Also if the user says “Hi” in middle of the conversation, the bot responds with fallback. I want it respond with proper utterance whenever a particular intent is detected.