From c75ff6a0e5d60bafae6476bfd0dab1b9edb0c560 Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 3 Apr 2026 18:23:37 +0100 Subject: [PATCH] =?UTF-8?q?agent:=20fix=20=E2=80=94=20add=20missing=20voca?= =?UTF-8?q?b.txt=20to=20Parakeet=20model=20registry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit transcribe-rs loads vocabulary from vocab.txt for token decoding. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/core/src/model_registry.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/core/src/model_registry.rs b/crates/core/src/model_registry.rs index 91c6d76..ebb6a9c 100644 --- a/crates/core/src/model_registry.rs +++ b/crates/core/src/model_registry.rs @@ -90,6 +90,12 @@ static ALL_MODELS: LazyLock> = LazyLock::new(|| { size: Megabytes(1), sha256: None, }, + ModelFile { + filename: "vocab.txt", + url: "https://huggingface.co/istupakov/parakeet-tdt-0.6b-v2-onnx/resolve/main/vocab.txt", + size: Megabytes(1), + sha256: None, + }, ], description: "Fastest local model — near-instant transcription", },