From 8c9ccf8f82aa83ed6f877f14eba3dfab0a30cfd5 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Tue, 24 Feb 2026 11:47:29 -0500 Subject: [PATCH] Bump various deprecation messages from mentioning version 0.0.103 to 0.0.104 --- src/pipecat/frames/frames.py | 2 +- src/pipecat/services/google/stt.py | 2 +- src/pipecat/services/hume/tts.py | 2 +- src/pipecat/services/llm_service.py | 2 +- src/pipecat/services/nvidia/stt.py | 2 +- src/pipecat/services/nvidia/tts.py | 2 +- src/pipecat/services/stt_service.py | 6 +++--- src/pipecat/services/tts_service.py | 6 +++--- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/pipecat/frames/frames.py b/src/pipecat/frames/frames.py index 0d6b3f18a..c69ddc931 100644 --- a/src/pipecat/frames/frames.py +++ b/src/pipecat/frames/frames.py @@ -2127,7 +2127,7 @@ class ServiceUpdateSettingsFrame(ControlFrame): Parameters: settings: Dictionary of setting name to value mappings. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``delta`` with a typed settings object instead. delta: :class:`~pipecat.services.settings.ServiceSettings` delta-mode diff --git a/src/pipecat/services/google/stt.py b/src/pipecat/services/google/stt.py index e294be20a..ac3afa7a3 100644 --- a/src/pipecat/services/google/stt.py +++ b/src/pipecat/services/google/stt.py @@ -368,7 +368,7 @@ class GoogleSTTSettings(STTSettings): language_codes: List of Google STT language code strings (e.g. ``["en-US"]``). - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``languages`` instead. If both are provided, ``languages`` takes precedence. This field is here just for backward compatibility with dict-based settings updates. diff --git a/src/pipecat/services/hume/tts.py b/src/pipecat/services/hume/tts.py index 4b13226cc..3fb43ff88 100644 --- a/src/pipecat/services/hume/tts.py +++ b/src/pipecat/services/hume/tts.py @@ -210,7 +210,7 @@ class HumeTTSService(TTSService): async def update_setting(self, key: str, value: Any) -> None: """Runtime updates via key/value pair. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``TTSUpdateSettingsFrame(delta=HumeTTSSettings(...))`` instead. Args: diff --git a/src/pipecat/services/llm_service.py b/src/pipecat/services/llm_service.py index df1bc6d08..1102e85a1 100644 --- a/src/pipecat/services/llm_service.py +++ b/src/pipecat/services/llm_service.py @@ -359,7 +359,7 @@ class LLMService(UserTurnCompletionLLMServiceMixin, AIService): warnings.simplefilter("always") warnings.warn( "Passing a dict via LLMUpdateSettingsFrame(settings={...}) is deprecated " - "since 0.0.103, use LLMUpdateSettingsFrame(delta=LLMSettings(...)) instead.", + "since 0.0.104, use LLMUpdateSettingsFrame(delta=LLMSettings(...)) instead.", DeprecationWarning, stacklevel=2, ) diff --git a/src/pipecat/services/nvidia/stt.py b/src/pipecat/services/nvidia/stt.py index be9002b14..3bbe04f51 100644 --- a/src/pipecat/services/nvidia/stt.py +++ b/src/pipecat/services/nvidia/stt.py @@ -241,7 +241,7 @@ class NvidiaSTTService(STTService): async def set_model(self, model: str): """Set the ASR model for transcription. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Model cannot be changed after initialization for NVIDIA Riva streaming STT. Set model and function id in the constructor instead, e.g.:: diff --git a/src/pipecat/services/nvidia/tts.py b/src/pipecat/services/nvidia/tts.py index 12bcf8c21..c6a5f371e 100644 --- a/src/pipecat/services/nvidia/tts.py +++ b/src/pipecat/services/nvidia/tts.py @@ -125,7 +125,7 @@ class NvidiaTTSService(TTSService): async def set_model(self, model: str): """Set the TTS model. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Model cannot be changed after initialization for NVIDIA Riva TTS. Set model and function id in the constructor instead, e.g.:: diff --git a/src/pipecat/services/stt_service.py b/src/pipecat/services/stt_service.py index 80448223c..eedc8b46d 100644 --- a/src/pipecat/services/stt_service.py +++ b/src/pipecat/services/stt_service.py @@ -184,7 +184,7 @@ class STTService(AIService): async def set_model(self, model: str): """Set the speech recognition model. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``STTUpdateSettingsFrame(model=...)`` instead. Args: @@ -204,7 +204,7 @@ class STTService(AIService): async def set_language(self, language: Language): """Set the language for speech recognition. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``STTUpdateSettingsFrame(language=...)`` instead. Args: @@ -357,7 +357,7 @@ class STTService(AIService): warnings.simplefilter("always") warnings.warn( "Passing a dict via STTUpdateSettingsFrame(settings={...}) is deprecated " - "since 0.0.103, use STTUpdateSettingsFrame(delta=STTSettings(...)) instead.", + "since 0.0.104, use STTUpdateSettingsFrame(delta=STTSettings(...)) instead.", DeprecationWarning, stacklevel=2, ) diff --git a/src/pipecat/services/tts_service.py b/src/pipecat/services/tts_service.py index 59920c342..1b65521a1 100644 --- a/src/pipecat/services/tts_service.py +++ b/src/pipecat/services/tts_service.py @@ -275,7 +275,7 @@ class TTSService(AIService): async def set_model(self, model: str): """Set the TTS model to use. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``TTSUpdateSettingsFrame(model=...)`` instead. Args: @@ -295,7 +295,7 @@ class TTSService(AIService): async def set_voice(self, voice: str): """Set the voice for speech synthesis. - .. deprecated:: 0.0.103 + .. deprecated:: 0.0.104 Use ``TTSUpdateSettingsFrame(voice=...)`` instead. Args: @@ -554,7 +554,7 @@ class TTSService(AIService): warnings.simplefilter("always") warnings.warn( "Passing a dict via TTSUpdateSettingsFrame(settings={...}) is deprecated " - "since 0.0.103, use TTSUpdateSettingsFrame(delta=TTSSettings(...)) instead.", + "since 0.0.104, use TTSUpdateSettingsFrame(delta=TTSSettings(...)) instead.", DeprecationWarning, stacklevel=2, )