From 582f9f066e2f2dde5df2632c93f8187a46c92eae Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 28 Dec 2025 17:34:30 -0600 Subject: [PATCH] =?UTF-8?q?feat:=20expand=20Whisper=20search=20window=20to?= =?UTF-8?q?=20=C2=B130s=20for=20sentence=20boundaries?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/app/services/whisper_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/services/whisper_service.py b/backend/app/services/whisper_service.py index b478814..f0da8ef 100644 --- a/backend/app/services/whisper_service.py +++ b/backend/app/services/whisper_service.py @@ -56,7 +56,7 @@ class WhisperService: self.min_gap_threshold = getattr(settings, 'whisper_min_gap_threshold', 0.15) # Snapping configuration - self.max_search_window = getattr(settings, 'whisper_max_search_window', 20.0) + self.max_search_window = getattr(settings, 'whisper_max_search_window', 30.0) @property def model(self) -> WhisperModel: