transports(daily): implement DailyOutputTransport.send_message

This commit is contained in:
Aleix Conchillo Flaqué
2024-05-20 10:30:59 -07:00
parent 4053c33899
commit 83812f2671
2 changed files with 10 additions and 0 deletions

View File

@@ -581,6 +581,9 @@ class DailyOutputTransport(BaseOutputTransport):
await super().cleanup()
await self._client.cleanup()
def send_message(self, frame: DailyTransportMessageFrame):
self._client.send_message(frame)
def write_raw_audio_frames(self, frames: bytes):
self._client.write_raw_audio_frames(frames)