From bd618d64e3f215dc08d878ce198d5a0adbf77e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kmen=20G=C3=B6rgen?= Date: Mon, 26 Jan 2026 10:06:16 +0100 Subject: [PATCH 1/3] Update src/pipecat/audio/filters/aic_filter.py Co-authored-by: Andres O. Vela --- src/pipecat/audio/filters/aic_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/audio/filters/aic_filter.py b/src/pipecat/audio/filters/aic_filter.py index cd0841d40..66012c6c3 100644 --- a/src/pipecat/audio/filters/aic_filter.py +++ b/src/pipecat/audio/filters/aic_filter.py @@ -127,7 +127,7 @@ class AICFilter(BaseAudioFilter): AIC VAD parameters: - speech_hold_duration: How long VAD continues detecting after speech ends (in seconds). - Range: 0.0 to 20x model window length, Default (SDK): 0.05s + Range: 0.0 to 100x model window length, Default (SDK): 0.05s - minimum_speech_duration: Minimum duration of speech required before VAD reports speech detected (in seconds). Range: 0.0 to 1.0, Default (SDK): 0.0s From 3c463c9416d5dc68f7c26c8b779b14d21acb5f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kmen=20G=C3=B6rgen?= Date: Mon, 26 Jan 2026 10:06:33 +0100 Subject: [PATCH 2/3] Update src/pipecat/audio/vad/aic_vad.py Co-authored-by: Andres O. Vela --- src/pipecat/audio/vad/aic_vad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/audio/vad/aic_vad.py b/src/pipecat/audio/vad/aic_vad.py index dd371636d..a608302bf 100644 --- a/src/pipecat/audio/vad/aic_vad.py +++ b/src/pipecat/audio/vad/aic_vad.py @@ -27,7 +27,7 @@ class AICVADAnalyzer(VADAnalyzer): - speech_hold_duration: Controls for how long the VAD continues to detect speech after the audio signal no longer contains speech (in seconds). - Range: 0.0 to 20x model window length + Range: 0.0 to 100x model window length Default (SDK): 0.05s (50ms) - minimum_speech_duration: Controls for how long speech needs to be present in the audio signal before the From 7572d63f8f1a1b381d869389b0a2cf5970305f5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kmen=20G=C3=B6rgen?= Date: Mon, 26 Jan 2026 10:06:40 +0100 Subject: [PATCH 3/3] Update src/pipecat/audio/vad/aic_vad.py Co-authored-by: Andres O. Vela --- src/pipecat/audio/vad/aic_vad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/audio/vad/aic_vad.py b/src/pipecat/audio/vad/aic_vad.py index a608302bf..959c6e35e 100644 --- a/src/pipecat/audio/vad/aic_vad.py +++ b/src/pipecat/audio/vad/aic_vad.py @@ -63,7 +63,7 @@ class AICVADAnalyzer(VADAnalyzer): will retry on set_sample_rate/first use. speech_hold_duration: Optional override for AIC VAD speech hold duration (in seconds). - Range: 0.0 to 20x model window length. + Range: 0.0 to 100x model window length. If None, the SDK default (0.05s) is used. minimum_speech_duration: Optional override for minimum speech duration before VAD reports