diff --git a/api-reference/server/services/stt/deepgram.mdx b/api-reference/server/services/stt/deepgram.mdx index f0a0fb73..b921c0bf 100644 --- a/api-reference/server/services/stt/deepgram.mdx +++ b/api-reference/server/services/stt/deepgram.mdx @@ -290,6 +290,12 @@ Supports the standard [service connection events](/api-reference/server/events/s Whether the bot should be interrupted when Flux detects user speech. + + Minimum silence duration in seconds before the watchdog sends silence to + prevent dangling turns. The actual threshold is `max(chunk_duration * 2, + watchdog_min_timeout)`, adapting automatically to the audio chunk size in use. + + ### Settings Runtime-configurable settings passed via the `settings` constructor argument using `DeepgramFluxSTTService.Settings(...)`. These can be updated mid-conversation with `STTUpdateSettingsFrame`. See [Service Settings](/pipecat/fundamentals/service-settings) for details. @@ -545,6 +551,12 @@ Supports the standard [service connection events](/api-reference/server/events/s Whether to interrupt the bot when Flux detects user speech. + + Minimum silence duration in seconds before the watchdog sends silence to + prevent dangling turns. The actual threshold is `max(chunk_duration * 2, + watchdog_min_timeout)`, adapting automatically to the audio chunk size in use. + +