Update some deprecation versions

This commit is contained in:
Paul Kompfner
2025-10-29 15:30:43 -04:00
parent 82d494d3d4
commit 9dafb715c4

View File

@@ -223,7 +223,7 @@ class GeminiLiveContext(OpenAILLMContext):
Provides Gemini-specific context management including system instruction Provides Gemini-specific context management including system instruction
extraction and message format conversion for the Live API. 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. Gemini Live no longer uses `GeminiLiveContext` under the hood.
It now uses `LLMContext`. It now uses `LLMContext`.
""" """
@@ -352,7 +352,7 @@ class GeminiLiveUserContextAggregator(OpenAIUserContextAggregator):
Extends OpenAI user aggregator to handle Gemini-specific message passing Extends OpenAI user aggregator to handle Gemini-specific message passing
while maintaining compatibility with the standard aggregation pipeline. while maintaining compatibility with the standard aggregation pipeline.
.. deprecated:: 0.0.93 .. deprecated:: 0.0.92
Gemini Live no longer expects a `GeminiLiveUserContextAggregator`. Gemini Live no longer expects a `GeminiLiveUserContextAggregator`.
It now expects a `LLMUserAggregator`. It now expects a `LLMUserAggregator`.
""" """
@@ -393,7 +393,7 @@ class GeminiLiveAssistantContextAggregator(OpenAIAssistantContextAggregator):
to prevent duplicate context entries, as Gemini Live pushes both to prevent duplicate context entries, as Gemini Live pushes both
LLMTextFrames and TTSTextFrames. LLMTextFrames and TTSTextFrames.
.. deprecated:: 0.0.93 .. deprecated:: 0.0.92
Gemini Live no longer uses `GeminiLiveAssistantContextAggregator` under the hood. Gemini Live no longer uses `GeminiLiveAssistantContextAggregator` under the hood.
It now uses `LLMAssistantAggregator`. It now uses `LLMAssistantAggregator`.
""" """
@@ -443,7 +443,7 @@ class GeminiLiveAssistantContextAggregator(OpenAIAssistantContextAggregator):
class GeminiLiveContextAggregatorPair: class GeminiLiveContextAggregatorPair:
"""Pair of user and assistant context aggregators for Gemini Live. """Pair of user and assistant context aggregators for Gemini Live.
.. deprecated:: 0.0.93 .. deprecated:: 0.0.92
`GeminiLiveContextAggregatorPair` is deprecated. `GeminiLiveContextAggregatorPair` is deprecated.
Use `LLMContextAggregatorPair` instead. Use `LLMContextAggregatorPair` instead.