Reputation: 81
I want to create a custom templates on the domain.yml file
Example domain.yml
utter_ask_cards
- header: Heading1
image: <image url>
buttons:
- title: button_name1
payload: button1
- title: button_name2
payload: button2
Upvotes: 0
Views: 372
Reputation: 748
In Rasa there are 4 types of responses possible
You can try something like this-
utter_ask_cards:
- text: " Heading1"
buttons:
- title: "button_name1"
payload: "button1"
- title: "button_name2"
payload: "button2"
Hope this answered your question.
Upvotes: 1