Hello there!
When the user asks for the price, I want the chatbot to reply with the price, if it is set. If not, I want it to start the price_form.
This is what I thought would work:
- rule: start form on asked price
condition:
- slot_was_set:
- fetched_travel_price: None
steps:
- intent: ask_info_price
- action: price_form
- active_loop: price_form
- rule: question path price
condition:
- slot_was_set:
- fetched_travel_price: True
steps:
- intent: ask_info_price
- action: utter_info_price
However, when I run the training, it says the two rules are conflicting each other.
Is it possible to have two rules, where different actions follow after an intent depending on if a slot is set or not?
Thank you, Zaya