From 9dafb715c4c4e21c2d4d845c7c9bd3cef07cd1e4 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Wed, 29 Oct 2025 15:30:43 -0400 Subject: [PATCH] Update some deprecation versions --- src/pipecat/services/google/gemini_live/llm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pipecat/services/google/gemini_live/llm.py b/src/pipecat/services/google/gemini_live/llm.py index 9a6c7db81..e42913771 100644 --- a/src/pipecat/services/google/gemini_live/llm.py +++ b/src/pipecat/services/google/gemini_live/llm.py @@ -223,7 +223,7 @@ class GeminiLiveContext(OpenAILLMContext): Provides Gemini-specific context management including system instruction extraction and message format conversion for the Live API. - .. deprecated:: 0.0.93 + .. deprecated:: 0.0.92 Gemini Live no longer uses `GeminiLiveContext` under the hood. It now uses `LLMContext`. """ @@ -352,7 +352,7 @@ class GeminiLiveUserContextAggregator(OpenAIUserContextAggregator): Extends OpenAI user aggregator to handle Gemini-specific message passing while maintaining compatibility with the standard aggregation pipeline. - .. deprecated:: 0.0.93 + .. deprecated:: 0.0.92 Gemini Live no longer expects a `GeminiLiveUserContextAggregator`. It now expects a `LLMUserAggregator`. """ @@ -393,7 +393,7 @@ class GeminiLiveAssistantContextAggregator(OpenAIAssistantContextAggregator): to prevent duplicate context entries, as Gemini Live pushes both LLMTextFrames and TTSTextFrames. - .. deprecated:: 0.0.93 + .. deprecated:: 0.0.92 Gemini Live no longer uses `GeminiLiveAssistantContextAggregator` under the hood. It now uses `LLMAssistantAggregator`. """ @@ -443,7 +443,7 @@ class GeminiLiveAssistantContextAggregator(OpenAIAssistantContextAggregator): class GeminiLiveContextAggregatorPair: """Pair of user and assistant context aggregators for Gemini Live. - .. deprecated:: 0.0.93 + .. deprecated:: 0.0.92 `GeminiLiveContextAggregatorPair` is deprecated. Use `LLMContextAggregatorPair` instead.