From 6f602a186834deda9f86c9252cc6719745b0439b Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Thu, 26 Feb 2026 21:10:07 -0500 Subject: [PATCH] Fix LLM model path to verified public repository --- transcribe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transcribe.py b/transcribe.py index b6db2b8..596a8c9 100644 --- a/transcribe.py +++ b/transcribe.py @@ -9,7 +9,7 @@ from mlx_lm import load, generate # Parameters WHISPER_MODEL = "mlx-community/whisper-small.en-mlx" -LLM_MODEL = "mlx-community/SmolLM2-135M-Instruct-4bit" # Tiny but fast LLM for translation +LLM_MODEL = "mlx-community/SmolLM2-135M-Instruct" # Verified public model TARGET_LANG = "Spanish" CHANNELS = 1 SAMPLERATE = 16000