Hello everyone!
I am integrating chatfuel on rasa now, but I have some issues for it. This issue is that quick replies doesn’t show on chatfuel. I think, rasa doen’t support quick replies format for chatfuel, but this may be my mistake.
My custom action is following: #############################################
class ActionGreeting(Action): “”“Greeting”""
def name(self):
return "action_greeting"
def run(self, dispatcher, tracker, domain):
print("action_greeting")
msg = [
{
"title": "Yes",
"payload": "Yes"
},
{
"title": "No",
"payload": "No"
}
]
dispatcher.utter_message(template="utter_start")
dispatcher.utter_message(text="So, do you want to know how sustainable your savings are today 🤑?", quick_replies=msg)
return []
#########################################
I need any response for this issue and will appreciate for that. Please help me with solving this issue.
Thanks