From 0a8a755909f7e4c3972fb6d71354860c920ee9db Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 16 Apr 2026 17:45:21 -0400 Subject: [PATCH] feat(voice): replace silence detector with Silero VAD in ChatInputBar Swaps useSilenceDetector for useVad. Adds no-speech guard: when the user manually stops recording without VAD ever detecting speech, show a toast and skip the Whisper round-trip instead of sending pure noise. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/ChatInputBar.vue | 56 ++++++++++++++++++------ 1 file changed, 43 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/ChatInputBar.vue b/frontend/src/components/ChatInputBar.vue index 2097eb9..cd9beb0 100644 --- a/frontend/src/components/ChatInputBar.vue +++ b/frontend/src/components/ChatInputBar.vue @@ -1,8 +1,8 @@