Live transcription · Multilingual

Cohere Transcribe 03-2026

Dedicated 2B ASR for 14-language transcription

Multilingual · 3.2× · 2.3 GB

Install in OpenASR Desktop

Opens the desktop app and downloads this model for you.

Don't have the app yet? Download OpenASR Desktop

On-deviceOn this computer
interview.m4a12:04

let's line up this week's release plan,

the beta build can ship on Friday,

then loop in design and QA,

Why it fits

Cohere Transcribe 03-2026 is Cohere and Cohere Labs' open release of a 2B-parameter automatic speech recognition model. It is a dedicated audio-in, text-out architecture with a Conformer-based acoustic encoder and a lightweight Transformer decoder, trained from scratch for transcription. The upstream model card lists support for 14 languages across English, European, APAC, and MENA coverage and reports Apache-2.0 licensing. This OpenASR repo repackages the original CohereLabs/cohere-transcribe-03-2026 weights as .oasr packs that run natively in the OpenASR runtime with no Python at inference time. For most users the q8_0 build is the recommended default; q4_k is for tighter memory budgets and fp16 is for verification or maximum fidelity.

What you can do with it

  • 🎙️ Dedicated ASR — audio-in, text-out model built specifically for transcription
  • 🌍 14 languages — covers English, major European languages, Arabic, Chinese, Japanese, Korean, and Vietnamese
  • 🧱 Conformer encoder-decoder — large acoustic encoder with a lightweight Transformer decoder
  • 🦀 Native in OpenASR.oasr packs run with no Python at inference, engineered for CPU and Apple Silicon

Other models

Developer details CLI commands, file hashes, and per-quant downloads — for scripting and verification.

Downloads by quantization

Pull stringSizeQuant
cohere-transcribe-03-2026:fp16 3.9 GB fp16
open .oasr
cohere-transcribe-03-2026:q8default 2.3 GB q8_0
open .oasr

Model facts

Size2.3 GB
Speed3.2× real-time
LanguageMultilingual
Familycohere
VendorCohereLabs
Released2026-03-24
Peak memory3.2 GB
Quantizationq8_0
LicenseApache-2.0
Revisiond68f62404ea48d4606ddea1a7c4eb19ffc352bb7
sha256e2ec0cd9a9d50f398e5553ef58bda19a7d4d0075c897bf5474686d877876a05f

Usage

These are CLI / local-server examples. The desktop app runs this model without typing a command — use Install above.

bash · transcribe a file
$ openasr pull cohere-transcribe-03-2026:q8
↓ cohere-transcribe-03-2026.oasr  2.3 GB  ✓ verified sha256
$ openasr transcribe meeting.wav --backend native --model-pack ~/.openasr/models/cohere-transcribe-03-2026/q8_0/cohere-transcribe-03-2026-q8_0.oasr
✓ local transcript · 0 bytes sent
bash · serve a local API
$ openasr serve --backend native --model-pack ~/.openasr/models/cohere-transcribe-03-2026/q8_0/cohere-transcribe-03-2026-q8_0.oasr --addr 127.0.0.1:8080
▶ http://127.0.0.1:8080 · model=cohere-transcribe-03-2026 · 0 bytes will leave this host
python · client.py
from openai import OpenAI
client = OpenAI(base_url="http://127.0.0.1:8080/v1", api_key="local")
audio = open("meeting.wav", "rb")
text = client.audio.transcriptions.create(model="cohere-transcribe-03-2026", file=audio)