Tabular Response in Microsoft Azure Bot Framework (Python)

157 Views Asked by At

I have created a bot using azure bot SDK and want to show response in tabular format. Currently, I am retrieving data from DB in a DataFrame object, then using DataFrame.to_html() to convert it to str object and then sending a response to Bot Framework Emulator using :

await turn_context.send_activity(response)

On UI the response is presented as enter image description here

I want to show a proper tabular structure. What's the correct way of doing it?

1

There are 1 best solutions below

0
On

You can use Adaptive Card.

Adaptive Cards are an open card exchange format enabling developers to exchange UI content in a common and consistent way.

Provides a way to display data in a tabular form. : Tabular form in Adaptive Card

This way you can bind dynamic values in Adaptive Card : Templating in Adaptive Cards