From 02a88022ddd0d2b625441a6f7be18c2cace7c49e Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Mon, 20 Oct 2025 10:06:09 -0400 Subject: [PATCH] Add a bit more detail to CHANGELOG related to AWSNovaSonicLLMService's support for LLMContext --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11ee10764..fb4209309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ```python ## BEFORE: + # Context aggregator type + context_aggregator: AWSNovaSonicContextAggregatorPair + # Context frame type frame: OpenAILLMContextFrame @@ -39,6 +42,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 messages = context.messages ## AFTER: + + # Context aggregator type + context_aggregator: LLMContextAggregatorPair + # Context frame type frame: LLMContextFrame @@ -85,6 +92,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `SpeechmaticsSTTService` updated dependencies for `speechmatics-rt>=0.5.0`. +### Deprecated + +- The `send_transcription_frames` argument to `AWSNovaSonicLLMService` is + deprecated. Transcription frames are now always sent. They go upstream, to be + handled by the user context aggregator. See "Changed" section for details. + +- Types in `pipecat.services.aws.nova_sonic.context` have been deprecated due + to changes to support `LLMContext`. See "Changed" section for details. + ### Fixed - Fixed an issue in `RivaSegmentedSTTService` where a runtime error occurred due