From 61b2e1fdd9b2376c00869942f6cc7c5b9914fcce Mon Sep 17 00:00:00 2001 From: Beingpax Date: Thu, 20 Mar 2025 19:37:42 +0545 Subject: [PATCH] no context false for whisper models --- VoiceInk/Whisper/LibWhisper.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/Whisper/LibWhisper.swift b/VoiceInk/Whisper/LibWhisper.swift index 84c0db3..b57e445 100644 --- a/VoiceInk/Whisper/LibWhisper.swift +++ b/VoiceInk/Whisper/LibWhisper.swift @@ -73,7 +73,7 @@ actor WhisperContext { params.translate = false params.n_threads = Int32(maxThreads) params.offset_ms = 0 - params.no_context = true + params.no_context = false params.single_segment = false // Adjusted parameters to reduce hallucination