Mark Backman
c8e9bf77fd
Remove deprecated simli_config and use_turn_server params from SimliVideoService
2026-04-01 17:03:05 -04:00
Mark Backman
48b25962e2
Remove deprecated english_normalization param from MiniMax TTS InputParams
2026-04-01 17:03:05 -04:00
Mark Backman
5d093c9ad7
Remove deprecated InputParams class from GoogleVertexLLMService
...
The location and project_id fields were deprecated since 0.0.90 in
favor of direct __init__ parameters. Now that InputParams is removed,
project_id is required and location defaults to "us-east4" directly
in the signature.
2026-04-01 17:03:05 -04:00
Mark Backman
d93f63deb5
Remove deprecated base_url param from GeminiLiveLLMService
2026-04-01 17:03:05 -04:00
Mark Backman
09a57972f5
Remove deprecated api_key param from GeminiTTSService
2026-04-01 17:03:05 -04:00
Mark Backman
f83d062df9
Remove deprecated InputParams alias from GladiaSTTService
2026-04-01 17:03:05 -04:00
Mark Backman
a2a42b8703
Remove deprecated confidence param from GladiaSTTService
2026-04-01 17:03:05 -04:00
Mark Backman
e60a72e2d4
Remove deprecated language param from GladiaInputParams
2026-04-01 17:03:05 -04:00
Mark Backman
83f4989a78
Remove deprecated model param from FishAudioTTSService
2026-04-01 17:03:05 -04:00
Mark Backman
5d2b288274
Remove deprecated url param from DeepgramSTTService
2026-04-01 17:03:05 -04:00
Mark Backman
52ece87ac9
Remove deprecated send_transcription_frames param from AWSNovaSonicLLMService
2026-04-01 17:03:05 -04:00
Mark Backman
bc4bbb1895
Remove deprecated PollyTTSService alias
2026-04-01 17:03:05 -04:00
Mark Backman
eb014fffc4
Flush Cartesia context on voice/model/language changes
...
Override _update_settings in CartesiaTTSService to flush the current
audio context and assign a new turn context ID when voice, model, or
language settings change. This prevents Context has closed errors
from Cartesia API, which locks these parameters per context.
2026-04-01 17:03:05 -04:00
Mark Backman
e74930b954
Remove deprecated text_aggregator and text_filter params from TTS
...
Remove the deprecated text_aggregator parameter from TTSService,
CartesiaTTSService, and RimeTTSService, and the deprecated text_filter
parameter from TTSService. Users should use LLMTextProcessor before
the TTS service instead. Update the voice-switching example to use
LLMTextProcessor with PatternPairAggregator.
2026-04-01 17:03:05 -04:00
kompfner
a3c7f6c2af
Merge pull request #4215 from pipecat-ai/pk/remove-openaillmcontext
...
Remove deprecated `OpenAILLMContext` as well as everything (code path…
2026-04-01 14:03:35 -04:00
Paul Kompfner
df68665ec1
Add changelog entries for OpenAILLMContext removal
2026-04-01 14:03:08 -04:00
Harshita Jain
bd6cbd7fe7
feat: add Smallest AI STT service integration ( #4162 )
...
Add SmallestSTTService using the Pulse WebSocket API for real-time
transcription. Includes SmallestSTTSettings dataclass, 32-language
support with resolve_language fallback, VAD-driven finalize signal,
and SMALLEST_TTFS_P99 latency constant.
Also adds X-Source and X-Pipecat-Version headers to Smallest STT
and TTS WebSocket connections.
2026-04-01 13:44:04 -04:00
Mark Backman
33ef6b3174
Merge pull request #4218 from pipecat-ai/mb/rename-all-examples
...
Rename all examples
2026-04-01 07:15:57 -04:00
Mark Backman
3ca656cae5
Update simli name to match others
2026-03-31 22:54:21 -04:00
Mark Backman
6a84d02156
Update evals
...
- Removed evals for removed services
- Added eval for function-calling-deepseek.py
2026-03-31 22:13:52 -04:00
Mark Backman
080da8b94c
Update eval script paths to match renamed example files
2026-03-31 22:09:42 -04:00
Mark Backman
d3021b4590
Rename example files to prepend parent folder name, preventing package shadowing
...
Example files like openai.py shadow installed packages when Python adds the
script directory to sys.path. Prepend the parent folder name to each example
file (e.g. openai.py -> function-calling-openai.py). Also split
thinking-and-mcp/ into separate mcp/ and thinking/ directories.
2026-03-31 22:06:01 -04:00
Paul Kompfner
92e34ea6e8
Fix potential UnboundLocalError for system_message in tracing decorator
...
Restore the `system_message = None` initialization that was dropped
when collapsing the OpenAILLMContext branch.
2026-03-31 21:00:51 -04:00
Paul Kompfner
ebab75765d
Fix stream cancellation tests to mock get_chat_completions
...
The tests were mocking the removed _stream_chat_completions_*_context
methods. Update them to mock get_chat_completions instead.
2026-03-31 18:54:23 -04:00
Paul Kompfner
110c88bf92
Remove stale re-export of deleted google.openai subpackage
2026-03-31 18:53:55 -04:00
Paul Kompfner
19e521b75a
Simplify LLMContextFrame handling in process_frame methods
...
Now that LLMContextFrame is the only frame that provides a context,
remove the intermediate `context = None` / `if context:` pattern
and handle context processing directly in the isinstance branch.
2026-03-31 18:35:48 -04:00
Paul Kompfner
394599d031
Remove deprecated OpenAILLMContext as well as everything (code paths or whole types) dependent on it (all of which were also deprecated)
2026-03-31 18:15:25 -04:00
mattie ruth backman
0f47076703
More RTVI version parsing improvements
2026-03-31 16:05:53 -04:00
mattie ruth backman
3e255f3d21
improve version format check
2026-03-31 16:05:53 -04:00
mattie ruth backman
565b9b961d
add tests for rtvi versioning
2026-03-31 16:05:53 -04:00
mattie ruth backman
692c3c74d1
We should now expect clients to be version 1.0.0 with valid versioning info
2026-03-31 16:05:53 -04:00
Mark Backman
7d309b3340
Merge pull request #4208 from pipecat-ai/mb/remove-deprecated-services
...
Remove deprecated service module shims
2026-03-31 15:37:12 -04:00
Mark Backman
04e8444096
Add changelog for #4208
2026-03-31 15:34:16 -04:00
Mark Backman
7501effad5
Remove deprecated service module shims and old implementations
...
Delete deprecated import shims that only re-export from new locations:
- services/ai_services.py
- services/gemini_multimodal_live/
- services/aws_nova_sonic/
- services/openai_realtime/
- services/deepgram/{stt,tts}_sagemaker.py
- services/google/{llm_openai,llm_vertex,google}.py
- services/google/gemini_live/llm_vertex.py
- services/riva/
- services/nim/
Remove deprecated implementations replaced by newer services:
- services/openai_realtime_beta/ (use openai.realtime)
- services/google/openai/ (use google.llm)
Also removes associated examples and tests for deleted services.
2026-03-31 15:34:14 -04:00
Mark Backman
0c8ff9c4c3
Merge pull request #4209 from pipecat-ai/mb/grok-3-default
...
Change GrokLLMService default model to grok-3
2026-03-31 15:29:34 -04:00
Mark Backman
53f6426b0b
Merge pull request #4216 from pipecat-ai/mb/add-missing-google-vertex
...
Add missing google-vertex.py file
2026-03-31 15:29:04 -04:00
Mark Backman
9e32ade44b
Merge pull request #4203 from pipecat-ai/mb/fix-json-decode-tool-calls
...
Handle incomplete function call arguments from interrupted LLM streams
2026-03-31 15:28:53 -04:00
Mark Backman
2574d24400
Merge pull request #4202 from pipecat-ai/mb/fix-inworld-tts-streaming-utf8
...
Fix UTF-8 decode error in Inworld TTS streaming response
2026-03-31 15:28:37 -04:00
Mark Backman
27cb078716
Add missing google-vertex.py file
2026-03-31 15:25:52 -04:00
Mark Backman
ca636813a8
Merge pull request #4206 from pipecat-ai/mb/flatten-examples-dir
...
Move foundational examples to examples/
2026-03-31 15:23:49 -04:00
Mark Backman
47b41a0ff7
Rename services/ to voice/ and function-calling/, flatten to top level
...
Replace the nested services/speech/ and services/function-calling/ with
top-level voice/ and function-calling/ directories. Update eval script
paths and README to match.
2026-03-31 15:20:03 -04:00
Mark Backman
f14638a1fd
Revert "Flatten services/ nesting: promote speech and function-calling to top level"
...
This reverts commit e1939ecd44 .
2026-03-31 14:59:23 -04:00
Mark Backman
e1939ecd44
Flatten services/ nesting: promote speech and function-calling to top level
...
Move services/speech/* directly into services/ and services/function-calling/*
into top-level function-calling/. Update eval script paths and README.
2026-03-31 14:55:22 -04:00
Mark Backman
dc5b94f9e0
Merge pull request #4213 from pipecat-ai/mb/google-imagen-4
...
Update default Google Imagen model to imagen-4.0
2026-03-31 13:20:20 -04:00
Mark Backman
1d85aedcae
Split features/ into audio/, observability/, and rag/ subfolders
...
Extract focused example groups from the catch-all features/ folder:
- audio/: audio recording, background sound, sound effects
- observability/: observer, heartbeats, sentry metrics
- rag/: mem0, gemini-rag, gemini grounding metadata
Update README to document the new folders.
2026-03-31 13:15:06 -04:00
Mark Backman
e719cbbe6d
Reorganize examples into topic-based subfolders
...
Move 304 examples from a flat numbered directory into 14 descriptive
subfolders: getting-started, services (speech + function-calling),
transcription, vision, realtime, persistent-context,
context-summarization, update-settings (stt/tts/llm), turn-management,
thinking-and-mcp, transports, video-avatar, video-processing, and
features.
Strip numbered prefixes from filenames (e.g. 07c-interruptible-deepgram.py
becomes services/speech/deepgram.py) since the folder context makes them
redundant. Keep numbered prefixes only in getting-started/ where ordering
matters.
Update eval script paths and README to match the new structure.
2026-03-31 13:12:24 -04:00
Mark Backman
f2ce7ececc
Move foundational examples to examples/
2026-03-31 13:12:24 -04:00
kompfner
bd7496fa27
Merge pull request #4211 from pipecat-ai/pk/openai-responses-websocket-service-refactor
...
Introduce WebsocketLLMService and refactor OpenAIResponsesLLMService …
2026-03-31 13:02:45 -04:00
Paul Kompfner
0a8bcf58c4
Register on_connection_error event handler in WebsocketLLMService
2026-03-31 10:52:33 -04:00
Paul Kompfner
0fb45c6114
Guard _drain_cancelled_response against None websocket
2026-03-31 10:32:47 -04:00