The news. On July 6, 2026, NVIDIA's Nemotron-Labs published Audex (Nemotron-Labs-Audex-30B-A3B), a unified audio-text model built on the text-only Nemotron-Cascade-2-30B-A3B backbone. Its design is deliberately plain: a single Transformer decoder where audio inputs are projected into the text embedding space and audio outputs are emitted as quantized tokens, handled exactly like text tokens. It reports state-of-the-art audio understanding, speech recognition, translation, text-to-speech, and speech-to-speech, "while preserving very compelling reasoning, alignment, knowledge, long-context, and agentic capabilities of its text-only LLM backbone with marginal or no regression." Read the paper →

Picture one long conveyor belt. Every word of a text prompt rides it as a small tile — that is already how a language model works, since a transformer only ever reads tokens. A sound clip doesn't naturally fit: it is a smooth, continuous wave, not a row of tiles. So an intake step reshapes the incoming wave and drops it onto the same belt, in the same space as the letter tiles — no separate side-track for speech. Now there is one belt, and a single reader working down it, treating every tile the same way. And when the reader wants to answer out loud, it lays down sound tiles the same way it lays down letters — discrete pieces of audio drawn from a fixed set — which play back as speech.

Underneath the metaphor, "the same belt" is the model's embedding space — the dense vectors a transformer actually consumes. A text token becomes a vector by a lookup; an audio segment becomes one by an encode-and-project step that lands it in that exact same space. Generation then runs one token at a time with no branch for modality: at each step the decoder emits the next token, and that token can be a word piece or a quantized audio token — a slice of sound drawn from a fixed vocabulary, the acoustic analog of a sub-word piece. Because the whole thing is just tokens in and tokens out, Audex runs on the standard LLM training and serving stack — no bespoke speech pipeline bolted on the side.

ApproachHow audio moves throughSeparate speech model?Text skill
Cascade (ASR → LLM → TTS)a recognizer transcribes speech to text; the LLM reads text; a TTS model speaks the replyyes — three models chaineduntouched, but latency stacks and the LLM never hears tone or timing
Bolt-on speech adapteran audio encoder + adapter feed a frozen or fine-tuned text modelpartly — an extra encoder networkat risk — tuning for audio can drag text skills down
Unified token space (Audex)audio projected into the text embedding space in, emitted as discrete tokens out; one decoder reads and writes themno — one decoder does both"marginal or no regression" (NVIDIA, reported)

Consider the training diet, because the token counts are unusually concrete. Audex is fed 157.4 billion audio tokens and 320.5 billion text tokens — roughly 478 billion tokens in all. Do the split: audio is 157.4 / 478 ≈ one in three tokens, and text keeps the other two in three. Keeping text the majority of the diet is plausibly part of how a whole new modality gets added without the usual forgetting tax — though the paper credits the full recipe (the token mix plus multi-stage supervised training, text-only reinforcement learning, and on-policy distillation), not the ratio alone. The exact contribution of each ingredient is not broken out.

The efficiency comes from the backbone being a Mixture of Experts. The name 30B-A3B says it: 30 billion parameters of stored knowledge, but only about 3 billion active for any given token. So the model reasons with the breadth of a 30B model while each generated token — word or sound — runs only its ~3 billion active parameters, not all 30 billion, keeping the per-token compute low. NVIDIA reports state-of-the-art results across audio understanding, recognition, translation, and generation; the exact codec, vocabulary size, latency, and layer-level specifics beyond the single-decoder description are not fully detailed in the paper.

The payoff is a cleaner idea of what an "audio model" has to be. You don't need a separate ear, brain, and mouth wired together — if sound can live as tokens in the text model's space, one decoder can listen, think, and speak. Audex is a bet that the simplest unification, one belt for every kind of tile, beats a specialized pipeline — and that you can add a new sense to a language model without eroding the language.

Goes deeper in: LLM Internals → Embeddings → Tokens in Space

Related explainers

Continue in trackLLM Internals — Embeddings: how every input becomes a vector

Frequently Asked Questions

Check what you knowMap your AI & GPU knowledge across every track — free, role-based