From a885cbe74b9bcf18729d101bcd644988efd985dc Mon Sep 17 00:00:00 2001 From: Cosmo Date: Tue, 14 Apr 2026 15:28:14 +0000 Subject: [PATCH] feat: VAD-based barge-in during TTS playback --- satellite/modes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/satellite/modes.py b/satellite/modes.py index 795ae13..a2163c9 100644 --- a/satellite/modes.py +++ b/satellite/modes.py @@ -3,7 +3,7 @@ import sys from .config import GATEWAY_URL, AGENT, AGENTS, log from .audio import record -from .tts import speak, stop_speaking, is_speaking +from .tts import speak, stop_speaking, is_speaking, start_barge_in_listener, was_barge_in from .llm import ask_agent_stream, is_reset_command, VOICE_SESSION_KEY WAKE_THRESHOLD = float(os.getenv("WAKE_THRESHOLD", "0.5"))