Audio play in a Chatbot project or text display in a voice project

Hey, for a project I need to use the Elevenlabs Text2Speech API to make the bot talk with a custom voice.
The problem I have here is that the normal Chatbot project doesn't have an audioblock to play audiostreams and the Voice project doesn't put the spoken text in the chat.
Does anybody of you know how to play an audioDataURI stream in a chat project or how to make the bot display text in a voice project?

I tried using a textblock with the following code to play the audio in the chat project but no audio is played:
<audio autoplay>
<source src="{audioDataURI}"
type = "audio/mpeg">
</audio>

Thanks in advance!
Was this page helpful?