Quick replies issue on the integration with rasa and chatfuel

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

Can you change this:

to this:

dispatcher.utter_message(text="So, do you want to know how sustainable your savings are today 🤑?", buttons=msg)

and try again?

Thanks @saurabh-m523,

I’ve tried to solve your solution, but not works. Could you please share other solution?