Hi all! I’m trying to send quick replies button in the answer from my bot. Also I want to add persistent menu from facebook. Neither Quick reply nor persistent menu is supported by the Rasa_sdk in python . How can I manage to integrate it in the stack ? Any idea , I was thinking about making custom actions where I will do those replies but the problem is that I was calling utter_template and as persistent menu is not implemented nothing is done!
Hey @Rogers_ntr, have you tried using utter_custom_json() to send custom json payloads to the output channel? You can also do this via the custom: key in the templates.
Ok @erohmensing Actually, I am the one who open an issue about Facebook Quick reply on github. It was a bug and a PR has been submitted to fix it. The main problem was that Rasa was not converting correctly object supported by the Facebook client that Rasa use in order to post to Facebook Messenger API.
@Paul3MK Here is an example
utter_language:
- quick_replies:
- content_type: text
payload: French
title: "French"
- content_type: text
payload: English
title: "English"