Fix LLM model path to verified public repository

This commit is contained in:
Adolfo Reyna
2026-02-26 21:10:07 -05:00
parent 78322cbc8d
commit 6f602a1868

View File

@@ -9,7 +9,7 @@ from mlx_lm import load, generate
# Parameters # Parameters
WHISPER_MODEL = "mlx-community/whisper-small.en-mlx" 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" TARGET_LANG = "Spanish"
CHANNELS = 1 CHANNELS = 1
SAMPLERATE = 16000 SAMPLERATE = 16000