Buttons not getting displayed in rasa web-chat . what i am missing here please help me?
Are you using the Rasa-webchat from Botfront?
In general, you can add a button like shown below:
utter_ask_hospital:
- text: "Here are 3 hospitals near you:"
buttons:
- title: Hosp A
payload: /select_a
- title: Hosp B
payload: /select_b
It should work on Rasa-webchat also.
You can test it out by checking if the buttons are working in the shell by running:
rasa shell
And checking if the buttons are showing up on the shell. If it is showing up then it maybe an issue with the webchat and you can check the issues here.
Hope this helps!
Thank you