From 148c9533ae83d3c085cddc890659d6d08104d3c3 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 16:55:08 +0100 Subject: [PATCH] chore: use 2s silence or 5s max capture --- apps/macos/Sources/Clawdis/VoiceWakeRuntime.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/Clawdis/VoiceWakeRuntime.swift b/apps/macos/Sources/Clawdis/VoiceWakeRuntime.swift index b2808f9f6..7f83b8154 100644 --- a/apps/macos/Sources/Clawdis/VoiceWakeRuntime.swift +++ b/apps/macos/Sources/Clawdis/VoiceWakeRuntime.swift @@ -28,8 +28,8 @@ actor VoiceWakeRuntime { private var currentConfig: RuntimeConfig? // Tunables - private let silenceWindow: TimeInterval = 1.0 - private let captureHardStop: TimeInterval = 8.0 + private let silenceWindow: TimeInterval = 2.0 + private let captureHardStop: TimeInterval = 5.0 private let debounceAfterSend: TimeInterval = 0.35 struct RuntimeConfig: Equatable {