diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f5014110..f239ed92f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,12 +87,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Updated `SarvamTTSService` to use WebSocket streaming for real-time audio - generation with multiple Indian languages, with HTTP support still available +- Updated `SarvamTTSService` to use WebSocket streaming for real-time audio + generation with multiple Indian languages, with HTTP support still available via `SarvamHttpTTSService`. ### Fixed +- Fixed a missing import in `SentryMetrics`. + - Fixed a `CartesiaTTSService` issue that was causing the application to hang after Cartesia's 5 minutes timed out. diff --git a/src/pipecat/processors/metrics/sentry.py b/src/pipecat/processors/metrics/sentry.py index 3a66bb1da..f5a46c74b 100644 --- a/src/pipecat/processors/metrics/sentry.py +++ b/src/pipecat/processors/metrics/sentry.py @@ -6,6 +6,8 @@ """Sentry integration for frame processor metrics.""" +import asyncio + from loguru import logger from pipecat.utils.asyncio.task_manager import BaseTaskManager