Rasa Buttons' size in Telegram

Hi everyone, I am looking for a way to customize the size of rasa buttons in telegram because when I have a long text in rasa button it is shortened automatically in telegram, I personally think it is telegram’s end where we need to work, if anyone knows how to solve this problem kindly do share your views.

I am attaching an screenshot of telegram chat

telebotss

As you can see there are 4 buttons and first button’s full text is written below (I want to log a complaint) the button itself is shortened, my objective is to get this button to full length as button containing text, and also listing these buttons one below another.

Any help is appreciated.

Hi @maharana, you can change the format of the buttons by adding button_type like this,

dispatcher.utter_message(
                    text="some text",
                    buttons=buttons,
                    button_type="vertical" 
                    )

@rasa_learner Thank you for your suggestion, it is working well.