diff --git a/changelog/4430.added.md b/changelog/4430.added.md new file mode 100644 index 000000000..2a433636b --- /dev/null +++ b/changelog/4430.added.md @@ -0,0 +1 @@ +- Added `watchdog_min_timeout` parameter to `DeepgramFluxSTT` and `DeepgramFluxSageMakerSTT` (default `0.5` seconds) to control the minimum silence duration before the watchdog sends a silence packet to prevent dangling turns. The actual threshold is `max(chunk_duration * 2, watchdog_min_timeout)`, so it also adapts automatically to the audio chunk size in use. diff --git a/changelog/4430.changed.md b/changelog/4430.changed.md new file mode 100644 index 000000000..dbad5d2c5 --- /dev/null +++ b/changelog/4430.changed.md @@ -0,0 +1 @@ +- `DeepgramFluxSTT` watchdog silence threshold is now dynamic: `max(chunk_duration * 2, watchdog_min_timeout)` instead of a fixed 500 ms. This prevents false silence injections when large audio chunks are sent at lower frequency.