0
votes

Problem Statement

  1. We need to integrate our chat developed in RASA to work on MS Teams Channel.
  2. The Chat bot needs to show Images, Carousals , Buttons, Text Boxes, Dropdown boxes to show data and accept inputs from the user on MS Teams Channel

Query:

Does RASA Integration with MS Teams support Adaptive Cards(Images, Carousals , Buttons, Text Boxes, Dropdown boxes) like MS Botframework Supports or is it mostly a Text and simple Button based interface?

1

1 Answers

0
votes

The botframework channel doesn't employ any python wrappers, it interacts with the post message uri directly code reference.

That endpoint expects an Activity object, which itself can contain Attachments like adaptive cards etc. So any sort of Activity you could render from that endpoint, you can send from Rasa via the send_custom_json() method.