Stories Conflict

Hello,

I’m having this error:

WARNING rasa.validator - Story structure conflict after intent ‘choose_topic’: utter_choose_subtopic_music predicted in ‘happy path 2’ utter_choose_subtopic_movies predicted in ‘happy path 1’ utter_choose_subtopic_sports predicted in ‘happy path 3’

I’m having trouble breaking down the stories into smaller parts using the checkpoints, and I can’t figure out how to do it the right way. Could you please lend me a hand ?

This is my storis.yml file:

stories:
  - story: happy path 1
    steps:
      - intent: greet
      - action: utter_greet
      - intent: choose_topic
        entities:
          - topic: movies
      - action: utter_choose_subtopic_movies
      - intent: choose_subtopic
        entities:
          - subtopic: action
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_movies
      - intent: choose_subtopic
        entities:
          - subtopic: comedy
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_movies
      - intent: choose_subtopic
        entities:
          - subtopic: horror
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_greet


  - story: happy path 2
    steps:
      - intent: greet
      - action: utter_greet
      - intent: choose_topic
        entities:
          - topic: music
      - action: utter_choose_subtopic_music
      - intent: choose_subtopic
        entities:
          - subtopic: rock
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_music
      - intent: choose_subtopic
        entities:
          - subtopic: pop
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_music
      - intent: choose_subtopic
        entities:
          - subtopic: jazz
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_greet


  - story: happy path 3
    steps:
      - intent: greet
      - action: utter_greet
      - intent: choose_topic
        entities:
          - topic: sports
      - action: utter_choose_subtopic_sports
      - intent: choose_subtopic
        entities:
          - subtopic: cricket
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_sports
      - intent: choose_subtopic
        entities:
          - subtopic: football
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_choose_subtopic_sports
      - intent: choose_subtopic
        entities:
          - subtopic: basketball
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: learn_more
      - action: action_provide_info
      - action: utter_ask_learn_more
      - intent: go_back
      - action: utter_greet