How to show videos in Rasa?

It depends on what frontend you are using. In case you are using rasa-webchat, you can send video like this:

dispatcher.utter_message(attachment={
            "type": "video",
            "payload": {
                "title": "Rasa Masterclass",
                "src": "https://www.youtube.com/embed/-F6h43DRpcU"
            }
        })
1 Like