feat: expand Whisper search window to ±30s for sentence boundaries

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
michael 2025-12-28 17:34:30 -06:00
parent c605cd1a88
commit 582f9f066e

View file

@ -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: