I have these stories that bot get into the middle of the flow.
when the user start new converstion and the first message for him is yes, it automaticly goes the story “network_complain” without waiting for the user to go by the same flow which is 1-intent greet 2-action response greet 3-intent affirm
version: "3.0"
stories:
- story: network_complain
steps:
- intent: greet
- action: response_greet
- intent: affirm
- action: network_complains_form
- active_loop: network_complains_form
- slot_was_set:
- requested_slot: null
- active_loop: null
- action: response_final_answer
- story: goodbye_2
steps:
- intent: greet
- action: response_greet
- intent: deny
- action: response_goodbye
- story: goodbye
steps:
- intent: greet
- action: response_greet
- intent: goodbye
- action: response_goodbye
any idea how i can solve this ?