From fb09808a8cbfcce5cdf4cc44eb847ecbc44e27b8 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Sun, 22 Feb 2026 18:42:21 +0200 Subject: [PATCH] =?UTF-8?q?fix(vad):=20lower=20activation=20threshold=200.?= =?UTF-8?q?60=E2=86=920.50?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Threshold 0.60 too strict, user speech consistently not detected. Back to default 0.50 with min_speech_duration=0.2 as noise guard. 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 a18312f..e6e948d 100644 --- a/voice.py +++ b/voice.py @@ -85,7 +85,7 @@ def _get_vad(): global _vad if _vad is None: _vad = silero.VAD.load( - activation_threshold=0.60, + activation_threshold=0.50, min_speech_duration=0.2, min_silence_duration=0.55, )