From eb7cf3be108fcbb7a66381f60f5a6387bbffd5c5 Mon Sep 17 00:00:00 2001 From: Aaron Nelson Date: Wed, 29 Apr 2026 17:35:03 +0000 Subject: [PATCH] upgrade whisper small -> large-v3, bump cpu_threads to 8 --- scripts/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/api.py b/scripts/api.py index d45e938..677c5e0 100644 --- a/scripts/api.py +++ b/scripts/api.py @@ -72,7 +72,7 @@ WHISPER_PROMPT = ( whisper_model = None if HAS_WHISPER: try: - whisper_model = WhisperModel("small", device="cpu", compute_type="int8", cpu_threads=4) + whisper_model = WhisperModel("large-v3", device="cpu", compute_type="int8", cpu_threads=8) print("Whisper model loaded") except Exception as e: print(f"Whisper not available: {e}")