I want my bot to be able to utter both “job” and “year” with the intent /ask_job, but I don’t know why this would not work with a button passing the /ask_job intent. Every time I choose the button, the trained bot would just respond with “utter_year”.
// Part of domain.yml
utter_age:
- text: "I am 21 years old."
buttons:
- title: "Ask his age"
payload: "/ask_age"
- title: "Ask his address"
payload: "/ask_address"
- title: "Ask his job"
payload: "/ask_job"
- title: "I've got no more questions to ask."
payload: "/goodbye"
// Part of stories.md
## ask age and job
* ask_age
- utter_age
* ask_job
- slot{"question_asked" : "age"}
- utter_job
- utter_year