Hi so i have two required slots soccer and football within a form. I want them to be filled by using a button. But I only happen to fill the first slot regarding soccer the football slot gets auto filled and the utter_ask_football is not triggered. My slot definition looks like:
soccer:
type: bool
mappings:
- type: from_intent
intent: affirm
- type: from_intent
intent: deny
football:
type: bool
mappings:
- type: form_intent
intent: affirm
- type: form_intent
intent: deny
and this is how i have defined my buttons
utter_ask_soccer:
- text: "Do you play soccer ?"
buttons:
- title: "Yes"
payload: /affirm
- title: "No"
payload: /deny
utter_ask_football:
- text: "Do you play football ?"
buttons:
- title: "Yes"
payload: /affirm
- title: "No"
payload: /deny
How can i solve this problem, I want the football slot not to be auto filled