Models
The public model catalog lives at model-registry/catalog.json in the
open core repository and is signed
and verified before the CLI trusts it. The Models page renders a
static projection of that catalog — the current source of truth for exact
quants, sizes, checksums, and licenses.
Families in the catalog today
Section titled “Families in the catalog today”- Whisper — English-only and multilingual variants across tiny/base/small/medium/large-v3/large-v3-turbo.
- Qwen3-ASR — multilingual, available in 0.6B and 1.7B sizes.
- Moonshine — compact English ASR.
- Cohere Transcribe — multilingual ASR.
- X-ASR — a zh-en bilingual model.
- Hy-MT2 — a speech translation model (not plain transcription).
- Capability packs — diarization support (speaker segmentation and
voice-match embedding models), pulled automatically when
--diarizeneeds them.
Most ASR entries ship several quantizations (for example fp16, q8_0,
q4_k); some packs (the translation and diarization capability packs) ship
a single tier. The catalog marks one recommended_quant per model. Don’t
hardcode a quant list here — it changes as new quants are published. Check
openasr search or the Models page for the live set.
The .oasr package format
Section titled “The .oasr package format”Every model ships as a single .oasr file — GGUF-backed internally,
magic-led with GGUF, and the only user-facing pack format; bare .gguf is
not accepted as run input or importer output. openasr verify and
openasr show inspect a pack without downloading anything, and native
transcription is fail-closed for unsupported or malformed pack inputs.
Installing and using a model
Section titled “Installing and using a model”openasr search whisper # find matching catalog entriesopenasr pull whisper-small # download and verify a packopenasr list # see what's installedopenasr transcribe audio.wav --model whisper-smallopenasr pull is the explicit, user-initiated download surface. Normal
transcription, batch, benchmark, API, and serve flows never auto-download a
model outside the CLI’s visible consent prompt (see
Current status).
Building your own pack
Section titled “Building your own pack”openasr model-pack import is a maintainer-only, source-checkout workflow — see the README’s “Building model packs” section if you need it.