Skip to content

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.

  • 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 --diarize needs 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.

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.

bash
openasr search whisper # find matching catalog entries
openasr pull whisper-small # download and verify a pack
openasr list # see what's installed
openasr transcribe audio.wav --model whisper-small

openasr 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).

openasr model-pack import is a maintainer-only, source-checkout workflow — see the README’s “Building model packs” section if you need it.