How to write stories based on entity values in rasa 2.2.5

How to write stories based on slots in rasa 2.2.5

I wrote like this but it is not working

version: "2.0"

stories:

- story: happy path

  steps:

  - intent: greet

  - action: utter_greet

- story: enquiry about tank cleaning

  steps: 

  - intent: tank_cleaning

  - action: action_tank_cleaning

- story: choose intent

  steps: 

  - intent: choose

    entities:

    - choice: "A"

  - slot_was_set:

    - choice: "A"

  - action: utter_ask_what_purchase

- story: choose intent 2

  steps: 

  - intent: choose

    entities:

    - choice: "B"

  - slot_was_set:

    - choice: "B"

  - action: utter_say_equipment

- story: chems stored with chems to purchase

  steps:

  - intent: chem_to_purch 

  - action: action_confirm_stored

- story: chems stored wirth Equipment Booster

  steps: 

  - intent: setup_booster_pump

  - action: action_confirm_stored

- story: oil

  steps:

  - intent: oil

    entities:

    - oil: "A"

  - slot_was_set:

    - oil: "A"

  - action: utter_say_chems

  - action: utter_further

- story: further

  steps:

  - intent: further

    entities:

    - further: "No"

  - slot_was_set:

    - further: "No"

  - action: utter_goodbye

- story: further

  steps:

  - intent: further

    entities:

    - further: "Yes"

  - slot_was_set:

    - further: "Yes"

  - action: action_tank_cleaning

rasa validate stories is showing that they are conflicting

hey @sandeep2213, can you share the output from rasa validate that says what’s conflicting? also to double check, are you setting influence_conversation to true for these slots?

another thing you can try is removing the entity step, leaving only slot_was_set

I tried al of these but nothing worked

Can you share the error that rasa validate is giving you?