From 1b08683c179975f945f359fc32b73fd7fca4e1d1 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Sun, 22 Feb 2026 18:15:06 +0200 Subject: [PATCH] =?UTF-8?q?fix(vad):=20lower=20activation=20threshold=200.?= =?UTF-8?q?75=E2=86=920.60?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 0.75 too strict, user voice not detected. 0.60 with min_speech_duration=0.2 should balance noise rejection vs speech detection. Co-Authored-By: Claude Sonnet 4.6 --- voice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voice.py b/voice.py index 7cebaa7..e530029 100644 --- a/voice.py +++ b/voice.py @@ -84,7 +84,7 @@ def _get_vad(): global _vad if _vad is None: _vad = silero.VAD.load( - activation_threshold=0.75, + activation_threshold=0.60, min_speech_duration=0.2, min_silence_duration=0.55, )