dv-pipecat-ai 0.0.85.dev7__py3-none-any.whl → 0.0.85.dev699__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dv-pipecat-ai might be problematic. Click here for more details.

Files changed (158) hide show
  1. {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev699.dist-info}/METADATA +78 -117
  2. {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev699.dist-info}/RECORD +158 -122
  3. pipecat/adapters/base_llm_adapter.py +38 -1
  4. pipecat/adapters/services/anthropic_adapter.py +9 -14
  5. pipecat/adapters/services/aws_nova_sonic_adapter.py +5 -0
  6. pipecat/adapters/services/bedrock_adapter.py +236 -13
  7. pipecat/adapters/services/gemini_adapter.py +12 -8
  8. pipecat/adapters/services/open_ai_adapter.py +19 -7
  9. pipecat/adapters/services/open_ai_realtime_adapter.py +5 -0
  10. pipecat/audio/filters/krisp_viva_filter.py +193 -0
  11. pipecat/audio/filters/noisereduce_filter.py +15 -0
  12. pipecat/audio/turn/base_turn_analyzer.py +9 -1
  13. pipecat/audio/turn/smart_turn/base_smart_turn.py +14 -8
  14. pipecat/audio/turn/smart_turn/data/__init__.py +0 -0
  15. pipecat/audio/turn/smart_turn/data/smart-turn-v3.0.onnx +0 -0
  16. pipecat/audio/turn/smart_turn/http_smart_turn.py +6 -2
  17. pipecat/audio/turn/smart_turn/local_smart_turn.py +1 -1
  18. pipecat/audio/turn/smart_turn/local_smart_turn_v2.py +1 -1
  19. pipecat/audio/turn/smart_turn/local_smart_turn_v3.py +124 -0
  20. pipecat/audio/vad/data/README.md +10 -0
  21. pipecat/audio/vad/vad_analyzer.py +13 -1
  22. pipecat/extensions/voicemail/voicemail_detector.py +5 -5
  23. pipecat/frames/frames.py +120 -87
  24. pipecat/observers/loggers/debug_log_observer.py +3 -3
  25. pipecat/observers/loggers/llm_log_observer.py +7 -3
  26. pipecat/observers/loggers/user_bot_latency_log_observer.py +22 -10
  27. pipecat/pipeline/runner.py +12 -4
  28. pipecat/pipeline/service_switcher.py +64 -36
  29. pipecat/pipeline/task.py +85 -24
  30. pipecat/processors/aggregators/dtmf_aggregator.py +28 -22
  31. pipecat/processors/aggregators/{gated_openai_llm_context.py → gated_llm_context.py} +9 -9
  32. pipecat/processors/aggregators/gated_open_ai_llm_context.py +12 -0
  33. pipecat/processors/aggregators/llm_response.py +6 -7
  34. pipecat/processors/aggregators/llm_response_universal.py +19 -15
  35. pipecat/processors/aggregators/user_response.py +6 -6
  36. pipecat/processors/aggregators/vision_image_frame.py +24 -2
  37. pipecat/processors/audio/audio_buffer_processor.py +43 -8
  38. pipecat/processors/filters/stt_mute_filter.py +2 -0
  39. pipecat/processors/frame_processor.py +103 -17
  40. pipecat/processors/frameworks/langchain.py +8 -2
  41. pipecat/processors/frameworks/rtvi.py +209 -68
  42. pipecat/processors/frameworks/strands_agents.py +170 -0
  43. pipecat/processors/logger.py +2 -2
  44. pipecat/processors/transcript_processor.py +4 -4
  45. pipecat/processors/user_idle_processor.py +3 -6
  46. pipecat/runner/run.py +270 -50
  47. pipecat/runner/types.py +2 -0
  48. pipecat/runner/utils.py +51 -10
  49. pipecat/serializers/exotel.py +5 -5
  50. pipecat/serializers/livekit.py +20 -0
  51. pipecat/serializers/plivo.py +6 -9
  52. pipecat/serializers/protobuf.py +6 -5
  53. pipecat/serializers/telnyx.py +2 -2
  54. pipecat/serializers/twilio.py +43 -23
  55. pipecat/services/ai_service.py +2 -6
  56. pipecat/services/anthropic/llm.py +2 -25
  57. pipecat/services/asyncai/tts.py +2 -3
  58. pipecat/services/aws/__init__.py +1 -0
  59. pipecat/services/aws/llm.py +122 -97
  60. pipecat/services/aws/nova_sonic/__init__.py +0 -0
  61. pipecat/services/aws/nova_sonic/context.py +367 -0
  62. pipecat/services/aws/nova_sonic/frames.py +25 -0
  63. pipecat/services/aws/nova_sonic/llm.py +1155 -0
  64. pipecat/services/aws/stt.py +1 -3
  65. pipecat/services/aws_nova_sonic/__init__.py +19 -1
  66. pipecat/services/aws_nova_sonic/aws.py +11 -1151
  67. pipecat/services/aws_nova_sonic/context.py +13 -355
  68. pipecat/services/aws_nova_sonic/frames.py +13 -17
  69. pipecat/services/azure/realtime/__init__.py +0 -0
  70. pipecat/services/azure/realtime/llm.py +65 -0
  71. pipecat/services/azure/stt.py +15 -0
  72. pipecat/services/cartesia/tts.py +2 -2
  73. pipecat/services/deepgram/__init__.py +1 -0
  74. pipecat/services/deepgram/flux/__init__.py +0 -0
  75. pipecat/services/deepgram/flux/stt.py +636 -0
  76. pipecat/services/elevenlabs/__init__.py +2 -1
  77. pipecat/services/elevenlabs/stt.py +254 -276
  78. pipecat/services/elevenlabs/tts.py +5 -5
  79. pipecat/services/fish/tts.py +2 -2
  80. pipecat/services/gemini_multimodal_live/events.py +38 -524
  81. pipecat/services/gemini_multimodal_live/file_api.py +23 -173
  82. pipecat/services/gemini_multimodal_live/gemini.py +41 -1403
  83. pipecat/services/gladia/stt.py +56 -72
  84. pipecat/services/google/__init__.py +1 -0
  85. pipecat/services/google/gemini_live/__init__.py +3 -0
  86. pipecat/services/google/gemini_live/file_api.py +189 -0
  87. pipecat/services/google/gemini_live/llm.py +1582 -0
  88. pipecat/services/google/gemini_live/llm_vertex.py +184 -0
  89. pipecat/services/google/llm.py +15 -11
  90. pipecat/services/google/llm_openai.py +3 -3
  91. pipecat/services/google/llm_vertex.py +86 -16
  92. pipecat/services/google/tts.py +7 -3
  93. pipecat/services/heygen/api.py +2 -0
  94. pipecat/services/heygen/client.py +8 -4
  95. pipecat/services/heygen/video.py +2 -0
  96. pipecat/services/hume/__init__.py +5 -0
  97. pipecat/services/hume/tts.py +220 -0
  98. pipecat/services/inworld/tts.py +6 -6
  99. pipecat/services/llm_service.py +15 -5
  100. pipecat/services/lmnt/tts.py +2 -2
  101. pipecat/services/mcp_service.py +4 -2
  102. pipecat/services/mem0/memory.py +6 -5
  103. pipecat/services/mistral/llm.py +29 -8
  104. pipecat/services/moondream/vision.py +42 -16
  105. pipecat/services/neuphonic/tts.py +2 -2
  106. pipecat/services/openai/__init__.py +1 -0
  107. pipecat/services/openai/base_llm.py +27 -20
  108. pipecat/services/openai/realtime/__init__.py +0 -0
  109. pipecat/services/openai/realtime/context.py +272 -0
  110. pipecat/services/openai/realtime/events.py +1106 -0
  111. pipecat/services/openai/realtime/frames.py +37 -0
  112. pipecat/services/openai/realtime/llm.py +829 -0
  113. pipecat/services/openai/tts.py +16 -8
  114. pipecat/services/openai_realtime/__init__.py +27 -0
  115. pipecat/services/openai_realtime/azure.py +21 -0
  116. pipecat/services/openai_realtime/context.py +21 -0
  117. pipecat/services/openai_realtime/events.py +21 -0
  118. pipecat/services/openai_realtime/frames.py +21 -0
  119. pipecat/services/openai_realtime_beta/azure.py +16 -0
  120. pipecat/services/openai_realtime_beta/openai.py +17 -5
  121. pipecat/services/playht/tts.py +31 -4
  122. pipecat/services/rime/tts.py +3 -4
  123. pipecat/services/salesforce/__init__.py +9 -0
  124. pipecat/services/salesforce/llm.py +465 -0
  125. pipecat/services/sarvam/tts.py +2 -6
  126. pipecat/services/simli/video.py +2 -2
  127. pipecat/services/speechmatics/stt.py +1 -7
  128. pipecat/services/stt_service.py +34 -0
  129. pipecat/services/tavus/video.py +2 -2
  130. pipecat/services/tts_service.py +9 -9
  131. pipecat/services/vision_service.py +7 -6
  132. pipecat/tests/utils.py +4 -4
  133. pipecat/transcriptions/language.py +41 -1
  134. pipecat/transports/base_input.py +17 -42
  135. pipecat/transports/base_output.py +42 -26
  136. pipecat/transports/daily/transport.py +199 -26
  137. pipecat/transports/heygen/__init__.py +0 -0
  138. pipecat/transports/heygen/transport.py +381 -0
  139. pipecat/transports/livekit/transport.py +228 -63
  140. pipecat/transports/local/audio.py +6 -1
  141. pipecat/transports/local/tk.py +11 -2
  142. pipecat/transports/network/fastapi_websocket.py +1 -1
  143. pipecat/transports/smallwebrtc/connection.py +98 -19
  144. pipecat/transports/smallwebrtc/request_handler.py +204 -0
  145. pipecat/transports/smallwebrtc/transport.py +65 -23
  146. pipecat/transports/tavus/transport.py +23 -12
  147. pipecat/transports/websocket/client.py +41 -5
  148. pipecat/transports/websocket/fastapi.py +21 -11
  149. pipecat/transports/websocket/server.py +14 -7
  150. pipecat/transports/whatsapp/api.py +8 -0
  151. pipecat/transports/whatsapp/client.py +47 -0
  152. pipecat/utils/base_object.py +54 -22
  153. pipecat/utils/string.py +12 -1
  154. pipecat/utils/tracing/service_decorators.py +21 -21
  155. {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev699.dist-info}/WHEEL +0 -0
  156. {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev699.dist-info}/licenses/LICENSE +0 -0
  157. {dv_pipecat_ai-0.0.85.dev7.dist-info → dv_pipecat_ai-0.0.85.dev699.dist-info}/top_level.txt +0 -0
  158. /pipecat/services/{aws_nova_sonic → aws/nova_sonic}/ready.wav +0 -0
@@ -64,6 +64,7 @@ class OpenAITTSService(TTSService):
64
64
  model: str = "gpt-4o-mini-tts",
65
65
  sample_rate: Optional[int] = None,
66
66
  instructions: Optional[str] = None,
67
+ speed: Optional[float] = None,
67
68
  **kwargs,
68
69
  ):
69
70
  """Initialize OpenAI TTS service.
@@ -75,6 +76,7 @@ class OpenAITTSService(TTSService):
75
76
  model: TTS model to use. Defaults to "gpt-4o-mini-tts".
76
77
  sample_rate: Output audio sample rate in Hz. If None, uses OpenAI's default 24kHz.
77
78
  instructions: Optional instructions to guide voice synthesis behavior.
79
+ speed: Voice speed control (0.25 to 4.0, default 1.0).
78
80
  **kwargs: Additional keyword arguments passed to TTSService.
79
81
  """
80
82
  if sample_rate and sample_rate != self.OPENAI_SAMPLE_RATE:
@@ -84,6 +86,7 @@ class OpenAITTSService(TTSService):
84
86
  )
85
87
  super().__init__(sample_rate=sample_rate, **kwargs)
86
88
 
89
+ self._speed = speed
87
90
  self.set_model_name(model)
88
91
  self.set_voice(voice)
89
92
  self._instructions = instructions
@@ -133,17 +136,22 @@ class OpenAITTSService(TTSService):
133
136
  try:
134
137
  await self.start_ttfb_metrics()
135
138
 
136
- # Setup extra body parameters
137
- extra_body = {}
139
+ # Setup API parameters
140
+ create_params = {
141
+ "input": text,
142
+ "model": self.model_name,
143
+ "voice": VALID_VOICES[self._voice_id],
144
+ "response_format": "pcm",
145
+ }
146
+
138
147
  if self._instructions:
139
- extra_body["instructions"] = self._instructions
148
+ create_params["instructions"] = self._instructions
149
+
150
+ if self._speed:
151
+ create_params["speed"] = self._speed
140
152
 
141
153
  async with self._client.audio.speech.with_streaming_response.create(
142
- input=text,
143
- model=self.model_name,
144
- voice=VALID_VOICES[self._voice_id],
145
- response_format="pcm",
146
- extra_body=extra_body,
154
+ **create_params
147
155
  ) as r:
148
156
  if r.status_code != 200:
149
157
  error = await r.text()
@@ -0,0 +1,27 @@
1
+ #
2
+ # Copyright (c) 2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ import warnings
8
+
9
+ from pipecat.services.azure.realtime.llm import AzureRealtimeLLMService
10
+ from pipecat.services.openai.realtime.events import (
11
+ InputAudioNoiseReduction,
12
+ InputAudioTranscription,
13
+ SemanticTurnDetection,
14
+ SessionProperties,
15
+ TurnDetection,
16
+ )
17
+ from pipecat.services.openai.realtime.llm import OpenAIRealtimeLLMService
18
+
19
+ with warnings.catch_warnings():
20
+ warnings.simplefilter("always")
21
+ warnings.warn(
22
+ "Types in pipecat.services.openai_realtime are deprecated. "
23
+ "Please use the equivalent types from "
24
+ "pipecat.services.openai.realtime instead.",
25
+ DeprecationWarning,
26
+ stacklevel=2,
27
+ )
@@ -0,0 +1,21 @@
1
+ #
2
+ # Copyright (c) 2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ """Azure OpenAI Realtime LLM service implementation."""
8
+
9
+ import warnings
10
+
11
+ from pipecat.services.azure.realtime.llm import *
12
+
13
+ with warnings.catch_warnings():
14
+ warnings.simplefilter("always")
15
+ warnings.warn(
16
+ "Types in pipecat.services.openai_realtime.azure are deprecated. "
17
+ "Please use the equivalent types from "
18
+ "pipecat.services.azure.realtime.llm instead.",
19
+ DeprecationWarning,
20
+ stacklevel=2,
21
+ )
@@ -0,0 +1,21 @@
1
+ #
2
+ # Copyright (c) 2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ """OpenAI Realtime LLM context and aggregator implementations."""
8
+
9
+ import warnings
10
+
11
+ from pipecat.services.openai.realtime.context import *
12
+
13
+ with warnings.catch_warnings():
14
+ warnings.simplefilter("always")
15
+ warnings.warn(
16
+ "Types in pipecat.services.openai_realtime.context are deprecated. "
17
+ "Please use the equivalent types from "
18
+ "pipecat.services.openai.realtime.context instead.",
19
+ DeprecationWarning,
20
+ stacklevel=2,
21
+ )
@@ -0,0 +1,21 @@
1
+ #
2
+ # Copyright (c) 2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ """Event models and data structures for OpenAI Realtime API communication."""
8
+
9
+ import warnings
10
+
11
+ from pipecat.services.openai.realtime.events import *
12
+
13
+ with warnings.catch_warnings():
14
+ warnings.simplefilter("always")
15
+ warnings.warn(
16
+ "Types in pipecat.services.openai_realtime.events are deprecated. "
17
+ "Please use the equivalent types from "
18
+ "pipecat.services.openai.realtime.events instead.",
19
+ DeprecationWarning,
20
+ stacklevel=2,
21
+ )
@@ -0,0 +1,21 @@
1
+ #
2
+ # Copyright (c) 2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ """Custom frame types for OpenAI Realtime API integration."""
8
+
9
+ import warnings
10
+
11
+ from pipecat.services.openai.realtime.frames import *
12
+
13
+ with warnings.catch_warnings():
14
+ warnings.simplefilter("always")
15
+ warnings.warn(
16
+ "Types in pipecat.services.openai_realtime.frames are deprecated. "
17
+ "Please use the equivalent types from "
18
+ "pipecat.services.openai.realtime.frames instead.",
19
+ DeprecationWarning,
20
+ stacklevel=2,
21
+ )
@@ -6,6 +6,8 @@
6
6
 
7
7
  """Azure OpenAI Realtime Beta LLM service implementation."""
8
8
 
9
+ import warnings
10
+
9
11
  from loguru import logger
10
12
 
11
13
  from .openai import OpenAIRealtimeBetaLLMService
@@ -23,6 +25,10 @@ except ModuleNotFoundError as e:
23
25
  class AzureRealtimeBetaLLMService(OpenAIRealtimeBetaLLMService):
24
26
  """Azure OpenAI Realtime Beta LLM service with Azure-specific authentication.
25
27
 
28
+ .. deprecated:: 0.0.84
29
+ `AzureRealtimeBetaLLMService` is deprecated, use `AzureRealtimeLLMService` instead.
30
+ This class will be removed in version 1.0.0.
31
+
26
32
  Extends the OpenAI Realtime service to work with Azure OpenAI endpoints,
27
33
  using Azure's authentication headers and endpoint format. Provides the same
28
34
  real-time audio and text communication capabilities as the base OpenAI service.
@@ -44,6 +50,16 @@ class AzureRealtimeBetaLLMService(OpenAIRealtimeBetaLLMService):
44
50
  **kwargs: Additional arguments passed to parent OpenAIRealtimeBetaLLMService.
45
51
  """
46
52
  super().__init__(base_url=base_url, api_key=api_key, **kwargs)
53
+
54
+ with warnings.catch_warnings():
55
+ warnings.simplefilter("always")
56
+ warnings.warn(
57
+ "AzureRealtimeBetaLLMService is deprecated and will be removed in version 1.0.0. "
58
+ "Use AzureRealtimeLLMService instead.",
59
+ DeprecationWarning,
60
+ stacklevel=2,
61
+ )
62
+
47
63
  self.api_key = api_key
48
64
  self.base_url = base_url
49
65
 
@@ -9,6 +9,7 @@
9
9
  import base64
10
10
  import json
11
11
  import time
12
+ import warnings
12
13
  from dataclasses import dataclass
13
14
  from typing import Optional
14
15
 
@@ -23,6 +24,7 @@ from pipecat.frames.frames import (
23
24
  Frame,
24
25
  InputAudioRawFrame,
25
26
  InterimTranscriptionFrame,
27
+ InterruptionFrame,
26
28
  LLMContextFrame,
27
29
  LLMFullResponseEndFrame,
28
30
  LLMFullResponseStartFrame,
@@ -31,7 +33,6 @@ from pipecat.frames.frames import (
31
33
  LLMTextFrame,
32
34
  LLMUpdateSettingsFrame,
33
35
  StartFrame,
34
- StartInterruptionFrame,
35
36
  TranscriptionFrame,
36
37
  TTSAudioRawFrame,
37
38
  TTSStartedFrame,
@@ -92,6 +93,10 @@ class CurrentAudioResponse:
92
93
  class OpenAIRealtimeBetaLLMService(LLMService):
93
94
  """OpenAI Realtime Beta LLM service providing real-time audio and text communication.
94
95
 
96
+ .. deprecated:: 0.0.84
97
+ `OpenAIRealtimeBetaLLMService` is deprecated, use `OpenAIRealtimeLLMService` instead.
98
+ This class will be removed in version 1.0.0.
99
+
95
100
  Implements the OpenAI Realtime API Beta with WebSocket communication for low-latency
96
101
  bidirectional audio and text interactions. Supports function calling, conversation
97
102
  management, and real-time transcription.
@@ -124,6 +129,15 @@ class OpenAIRealtimeBetaLLMService(LLMService):
124
129
  send_transcription_frames: Whether to emit transcription frames. Defaults to True.
125
130
  **kwargs: Additional arguments passed to parent LLMService.
126
131
  """
132
+ with warnings.catch_warnings():
133
+ warnings.simplefilter("always")
134
+ warnings.warn(
135
+ "OpenAIRealtimeBetaLLMService is deprecated and will be removed in version 1.0.0. "
136
+ "Use OpenAIRealtimeLLMService instead.",
137
+ DeprecationWarning,
138
+ stacklevel=2,
139
+ )
140
+
127
141
  full_url = f"{base_url}?model={model}"
128
142
  super().__init__(base_url=full_url, **kwargs)
129
143
 
@@ -350,7 +364,7 @@ class OpenAIRealtimeBetaLLMService(LLMService):
350
364
  elif isinstance(frame, InputAudioRawFrame):
351
365
  if not self._audio_input_paused:
352
366
  await self._send_user_audio(frame)
353
- elif isinstance(frame, StartInterruptionFrame):
367
+ elif isinstance(frame, InterruptionFrame):
354
368
  await self._handle_interruption()
355
369
  elif isinstance(frame, UserStartedSpeakingFrame):
356
370
  await self._handle_user_started_speaking(frame)
@@ -644,14 +658,12 @@ class OpenAIRealtimeBetaLLMService(LLMService):
644
658
 
645
659
  async def _handle_evt_speech_started(self, evt):
646
660
  await self._truncate_current_audio_response()
647
- await self._start_interruption() # cancels this processor task
648
- await self.push_frame(StartInterruptionFrame()) # cancels downstream tasks
661
+ await self.push_interruption_task_frame_and_wait()
649
662
  await self.push_frame(UserStartedSpeakingFrame())
650
663
 
651
664
  async def _handle_evt_speech_stopped(self, evt):
652
665
  await self.start_ttfb_metrics()
653
666
  await self.start_processing_metrics()
654
- await self._stop_interruption()
655
667
  await self.push_frame(UserStoppedSpeakingFrame())
656
668
 
657
669
  async def _maybe_handle_evt_retrieve_conversation_item_error(self, evt: events.ErrorEvent):
@@ -14,6 +14,7 @@ import io
14
14
  import json
15
15
  import struct
16
16
  import uuid
17
+ import warnings
17
18
  from typing import AsyncGenerator, Optional
18
19
 
19
20
  import aiohttp
@@ -25,8 +26,8 @@ from pipecat.frames.frames import (
25
26
  EndFrame,
26
27
  ErrorFrame,
27
28
  Frame,
29
+ InterruptionFrame,
28
30
  StartFrame,
29
- StartInterruptionFrame,
30
31
  TTSAudioRawFrame,
31
32
  TTSStartedFrame,
32
33
  TTSStoppedFrame,
@@ -110,6 +111,11 @@ def language_to_playht_language(language: Language) -> Optional[str]:
110
111
  class PlayHTTTSService(InterruptibleTTSService):
111
112
  """PlayHT WebSocket-based text-to-speech service.
112
113
 
114
+ .. deprecated:: 0.0.88
115
+
116
+ This class is deprecated and will be removed in a future version.
117
+ PlayHT is shutting down their API on December 31st, 2025.
118
+
113
119
  Provides real-time text-to-speech synthesis using PlayHT's WebSocket API.
114
120
  Supports streaming audio generation with configurable voice engines and
115
121
  language settings.
@@ -158,6 +164,15 @@ class PlayHTTTSService(InterruptibleTTSService):
158
164
  **kwargs,
159
165
  )
160
166
 
167
+ with warnings.catch_warnings():
168
+ warnings.simplefilter("always")
169
+ warnings.warn(
170
+ "PlayHT is shutting down their API on December 31st, 2025. "
171
+ "'PlayHTTTSService' is deprecated and will be removed in a future version.",
172
+ DeprecationWarning,
173
+ stacklevel=2,
174
+ )
175
+
161
176
  params = params or PlayHTTTSService.InputParams()
162
177
 
163
178
  self._api_key = api_key
@@ -312,7 +327,7 @@ class PlayHTTTSService(InterruptibleTTSService):
312
327
  return self._websocket
313
328
  raise Exception("Websocket not connected")
314
329
 
315
- async def _handle_interruption(self, frame: StartInterruptionFrame, direction: FrameDirection):
330
+ async def _handle_interruption(self, frame: InterruptionFrame, direction: FrameDirection):
316
331
  """Handle interruption by stopping metrics and clearing request ID."""
317
332
  await super()._handle_interruption(frame, direction)
318
333
  await self.stop_all_metrics()
@@ -401,6 +416,11 @@ class PlayHTTTSService(InterruptibleTTSService):
401
416
  class PlayHTHttpTTSService(TTSService):
402
417
  """PlayHT HTTP-based text-to-speech service.
403
418
 
419
+ .. deprecated:: 0.0.88
420
+
421
+ This class is deprecated and will be removed in a future version.
422
+ PlayHT is shutting down their API on December 31st, 2025.
423
+
404
424
  Provides text-to-speech synthesis using PlayHT's HTTP API for simpler,
405
425
  non-streaming synthesis. Suitable for use cases where streaming is not
406
426
  required and simpler integration is preferred.
@@ -454,8 +474,6 @@ class PlayHTHttpTTSService(TTSService):
454
474
 
455
475
  # Warn about deprecated protocol parameter if explicitly provided
456
476
  if protocol:
457
- import warnings
458
-
459
477
  with warnings.catch_warnings():
460
478
  warnings.simplefilter("always")
461
479
  warnings.warn(
@@ -464,6 +482,15 @@ class PlayHTHttpTTSService(TTSService):
464
482
  stacklevel=2,
465
483
  )
466
484
 
485
+ with warnings.catch_warnings():
486
+ warnings.simplefilter("always")
487
+ warnings.warn(
488
+ "PlayHT is shutting down their API on December 31st, 2025. "
489
+ "'PlayHTHttpTTSService' is deprecated and will be removed in a future version.",
490
+ DeprecationWarning,
491
+ stacklevel=2,
492
+ )
493
+
467
494
  params = params or PlayHTHttpTTSService.InputParams()
468
495
 
469
496
  self._user_id = user_id
@@ -24,15 +24,14 @@ from pipecat.frames.frames import (
24
24
  EndFrame,
25
25
  ErrorFrame,
26
26
  Frame,
27
+ InterruptionFrame,
27
28
  StartFrame,
28
- StartInterruptionFrame,
29
29
  TTSAudioRawFrame,
30
30
  TTSStartedFrame,
31
31
  TTSStoppedFrame,
32
32
  )
33
33
  from pipecat.processors.frame_processor import FrameDirection
34
34
  from pipecat.services.tts_service import AudioContextWordTTSService, TTSService
35
- from pipecat.transcriptions import language
36
35
  from pipecat.transcriptions.language import Language
37
36
  from pipecat.utils.text.base_text_aggregator import BaseTextAggregator
38
37
  from pipecat.utils.text.skip_tags_aggregator import SkipTagsAggregator
@@ -280,7 +279,7 @@ class RimeTTSService(AudioContextWordTTSService):
280
279
  return self._websocket
281
280
  raise Exception("Websocket not connected")
282
281
 
283
- async def _handle_interruption(self, frame: StartInterruptionFrame, direction: FrameDirection):
282
+ async def _handle_interruption(self, frame: InterruptionFrame, direction: FrameDirection):
284
283
  """Handle interruption by clearing current context."""
285
284
  await super()._handle_interruption(frame, direction)
286
285
  await self.stop_all_metrics()
@@ -375,7 +374,7 @@ class RimeTTSService(AudioContextWordTTSService):
375
374
  direction: The direction to push the frame.
376
375
  """
377
376
  await super().push_frame(frame, direction)
378
- if isinstance(frame, (TTSStoppedFrame, StartInterruptionFrame)):
377
+ if isinstance(frame, (TTSStoppedFrame, InterruptionFrame)):
379
378
  if isinstance(frame, TTSStoppedFrame):
380
379
  await self.add_word_timestamps([("Reset", 0)])
381
380
 
@@ -0,0 +1,9 @@
1
+ #
2
+ # Copyright (c) 2024–2025, Daily
3
+ #
4
+ # SPDX-License-Identifier: BSD 2-Clause License
5
+ #
6
+
7
+ from .llm import SalesforceAgentLLMService
8
+
9
+ __all__ = ["SalesforceAgentLLMService"]