When i call to utter define quick replies, how to Classify type button with type quick_replies. Thanks all.

When i call to utter define quick replies, how to Classify type button with type quick_replies. Thanks all.
Please use buttons as recommended in the docs
responses:
utter_greet:
- text: "Hey! Would you like to purchase motor or home insurance?"
buttons:
- title: "Motor insurance"
payload: '/inform{{"insurance":"motor"}}'
- title: "Home insurance"
payload: '/inform{{"insurance":"home"}}'
Thanks for your reply
Because when im using buttons and quick_replies json response in postman same format. So I can’t distinguish which one belongs to buttons and which one belongs to quick_replies based on response. Below is a picture of a that I use and the response of each case, you can see the response has the same structure
quick_replies
is not a Rasa response. You can use text
, buttons
, and image
.
If you want more than this, you will have to create a custom output payload with the keyword custom
.
Thanks you so much!