Skip to content

Commit fa72710

Browse files
fix: MetalRT STT/TTS download 404 — remove incorrect hf_subdir paths
The HF repos (runanywhere/whisper_tiny_4bit, etc.) have files at the repo root, not in a subdirectory. The hf_subdir field was incorrectly set, causing 404s during rcli setup. Made-with: Cursor
1 parent c1ea2b7 commit fa72710

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/models/model_registry.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ inline std::vector<MetalRTComponentModel> metalrt_component_models() {
304304
"Whisper Tiny (MLX 4-bit)",
305305
"stt",
306306
"runanywhere/whisper_tiny_4bit",
307-
"whisper-tiny-mlx-4bit",
307+
"",
308308
"whisper-tiny-mlx-4bit",
309309
40,
310310
"Fastest transcription, lower accuracy (~10% WER)",
@@ -316,7 +316,7 @@ inline std::vector<MetalRTComponentModel> metalrt_component_models() {
316316
"Whisper Small (MLX 4-bit)",
317317
"stt",
318318
"runanywhere/whisper_small_4bit",
319-
"whisper-small-mlx-4bit",
319+
"",
320320
"whisper-small-mlx-4bit",
321321
375,
322322
"Good balance of speed and accuracy (~5% WER)",
@@ -328,7 +328,7 @@ inline std::vector<MetalRTComponentModel> metalrt_component_models() {
328328
"Whisper Medium (MLX 4-bit)",
329329
"stt",
330330
"runanywhere/whisper_medium_4bit",
331-
"whisper-medium-mlx-4bit",
331+
"",
332332
"whisper-medium-mlx-4bit",
333333
980,
334334
"Best accuracy, slower (~3% WER)",
@@ -340,7 +340,7 @@ inline std::vector<MetalRTComponentModel> metalrt_component_models() {
340340
"Kokoro 82M (bf16)",
341341
"tts",
342342
"runanywhere/kokoro_bf16",
343-
"Kokoro-82M-bf16",
343+
"",
344344
"Kokoro-82M-bf16",
345345
82,
346346
"Kokoro TTS for GPU-accelerated speech synthesis",

0 commit comments

Comments
 (0)