A speech-language model built on the Ultravox architecture, using
Qwen 3.6-27B as the language backbone and
Whisper-large-v3-turbo as the audio encoder. Pretrained by
Quantum Desk LTD for real-time voice agent applications.
Unlike a cascaded ASR → LLM pipeline, this model consumes raw audio embeddings directly into the LLM's token stream — eliminating the transcription hop and cutting 200-400 ms of latency per turn.
This is an English-only base checkpoint. Multilingual and phone-quality audio training were deliberately excluded to accelerate iteration and reduce cost. That broader training (Phase 1B telephony mix + Phase 2 domain data) has since shipped as
ultravox-qwen3.6-27b-v2.
For reference, Fixie's
ultravox-v0_6-qwen-3-32b achieves
2.88 WER on librispeech (multilingual training, 32B base).
Full WER benchmarks were measured on the successor checkpoint —
v2 reaches 2.08% LibriSpeech test-clean / 9.67% Switchboard WER — and are published on its card. This base checkpoint was not separately benchmarked.
1vllm serve QuantumDesk-AI/ultravox-qwen3.6-27b-base \
2 --served-model-name ultravox \
3 --max-model-len 32768 \
4 --gpu-memory-utilization 0.85 \
5 --port 8000
1from transformers import AutoModel, AutoProcessor
2import torchaudio
3
4processor = AutoProcessor.from_pretrained(
5 "QuantumDesk-AI/ultravox-qwen3.6-27b-base",
6 trust_remote_code=True,
7)
8model = AutoModel.from_pretrained(
9 "QuantumDesk-AI/ultravox-qwen3.6-27b-base",
10 trust_remote_code=True,
11 torch_dtype="bfloat16",
12).to("cuda")
13
14audio, sr = torchaudio.load("hello.wav")
15messages = [
16 {"role": "user", "content": [
17 {"type": "audio", "audio": audio[0].numpy(), "sampling_rate": sr},
18 {"type": "text", "text": "What did I say?"},
19 ]},
20]
21inputs = processor.apply_chat_template(messages, return_tensors="pt").to("cuda")
22outputs = model.generate(**inputs, max_new_tokens=128)
23print(processor.decode(outputs[0], skip_special_tokens=True))
*Compute-bound (KV cache is not the limit). Assumes ~2000 tokens context per session and voice-typical 5-6 tok/s per session sustained rate.
Apache 2.0. Model weights are Quantum Desk LTD's contribution. See individual base-model licenses for
Qwen 3.6-27B (Apache 2.0) and
Whisper-large-v3-turbo (MIT).
1@misc{quantumdesk_ultravox_qwen36_2026,
2 author = {Quantum Desk LTD},
3 title = {Ultravox-Qwen3.6-27B-Base},
4 year = {2026},
5 publisher = {HuggingFace},
6 url = {https://huggingface.co/QuantumDesk-AI/ultravox-qwen3.6-27b-base},
7}