Hi,
Could Someone please share any github link for full working example of Rasa bot with Buttons. Somehow I am missing something in moodbot example. Intent and slot not being set if i did as below.
utter_ask_domain:
- text: "which domain You are interested about?"
buttons:
- title: "Amendments"
payload: '/AmendmentDomain{"domain": "Amendments"}'
- title: "Quarter"
payload: '/QuarterDomain{"domain": "Quarter"}'
- title: "Periodic"
payload: '/PeriodicDomain{"domain": "Periodic"}'
slots:
domain:
type: categorical
values:
- Amendments
- Quarter
- Periodic
intents:
- greet
- goodbye
- DomainSpecifier
- AmendmentDomain
- QuarterDomain
- PeriodicDomain