Skip to content

Commit

Permalink
transports(daily): implement DailyOutputTransport.send_message
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed May 20, 2024
1 parent 4053c33 commit 83812f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to **pipecat** will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.18] - 2024-05-20

### Fixed

- Fixed an issue in `DailyOuputTransport` where transport messages were not
being sent.

## [0.0.17] - 2024-05-19

### Added
Expand Down
3 changes: 3 additions & 0 deletions src/pipecat/transports/services/daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,9 @@ async def cleanup(self):
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)

Expand Down

0 comments on commit 83812f2

Please sign in to comment.