Merge pull request #1265 from pipecat-ai/aleix/transport-remove-audio-out-is-live

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-21 06:51:09 -08:00
committed by GitHub
3 changed files with 5 additions and 4 deletions

View File

@@ -30,6 +30,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
stt = DeepgramSTTService(..., live_options=LiveOptions(model="nova-2-general"))
```
### Removed
- Remove `TransportParams.audio_out_is_live` since it was not being used at all.
### Fixed
- Fixed an issue where `EndTaskFrame` was not triggering `on_client_disconnected` or closing the WebSocket in FastAPI.
@@ -53,7 +57,7 @@ stt = DeepgramSTTService(..., live_options=LiveOptions(model="nova-2-general"))
transcriptions to be generated by the STT service.
- Fixes an issue in `DeepgramSTTService` where `sample_rate` passed to the
`LiveOptions` was not being used, causing the service to use the default
`LiveOptions` was not being used, causing the service to use the default
sample rate of pipeline.
### Other