You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update for pipecat PR #4232 (remove deprecated parameters)
- Removed `vad_events` and `should_interrupt` parameters from DeepgramSTTService
- Removed `on_speech_started` and `on_utterance_end` event handlers from Deepgram docs
- Removed deprecated `vad_events` note (feature fully removed)
- Added **kwargs parameter to OpenAI Realtime docs for completeness
These parameters and features were removed in pipecat PR #4232 as part
of deprecation cleanup.
Copy file name to clipboardExpand all lines: server/services/s2s/openai.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,10 @@ _Deprecated in v0.0.105. Use `settings=OpenAIRealtimeLLMService.Settings(session
126
126
`"high"` provides more detail.
127
127
</ParamField>
128
128
129
+
<ParamFieldpath="**kwargs"type="Any">
130
+
Additional arguments passed to parent LLMService.
131
+
</ParamField>
132
+
129
133
### Settings
130
134
131
135
Runtime-configurable settings passed via the `settings` constructor argument using `OpenAIRealtimeLLMService.Settings(...)`. These can be updated mid-conversation with `LLMUpdateSettingsFrame`. See [Service Settings](/guides/fundamentals/service-settings) for details.
P99 latency from speech end to final transcript in seconds. Override for your
178
173
deployment.
@@ -201,7 +196,6 @@ Runtime-configurable settings passed via the `settings` constructor argument usi
201
196
|`search`|`str \| list`|`None`| Search terms to highlight. |
202
197
|`smart_format`|`bool`|`False`| Apply smart formatting to transcripts. |
203
198
|`utterance_end_ms`|`int`|`None`| Silence duration in ms before an utterance-end event. |
204
-
|`vad_events`|`bool`|`False`| Enable Deepgram's built-in VAD events (deprecated). |
205
199
206
200
### Usage
207
201
@@ -232,27 +226,11 @@ stt = DeepgramSTTService(
232
226
### Notes
233
227
234
228
-**Finalize on VAD stop**: When the pipeline's VAD detects the user has stopped speaking, the service sends a [finalize](https://developers.deepgram.com/docs/finalize) request to Deepgram for faster final transcript delivery.
235
-
-**Deprecated vad_events**: The `vad_events` setting is deprecated. Use Silero VAD instead.
236
229
-**Multilingual support**: Deepgram Nova models support many languages. The default is `Language.EN` (English). Set `language="multi"` in settings to enable multilingual transcription, which will detect and transcribe multiple languages within the same audio stream.
237
230
238
231
### Event Handlers
239
232
240
-
Supports the standard [service connection events](/server/events/service-events) (`on_connected`, `on_disconnected`, `on_connection_error`), plus:
0 commit comments