NVIDIA NeMo Switchyard: route agent work, cut cost
NVIDIA open-sourced a model routing library and a 30B open-weight agent model. Reported 74% cost cuts on escalation routing. What it means for your agent bill.
The expensive part of an agent is not the hard step. It is the four hundred cheap steps around it — tool calls, result checks, subagent handoffs — all billed at frontier prices because that is the one model your code knows how to call. NVIDIA shipped two things yesterday aimed at exactly that: a small open-weight model built for the cheap steps, and an open-source model routing library that decides which model gets which request.
What actually happened
NVIDIA announced Nemotron 3.5 Lightning and NeMo Switchyard on August 11.
Nemotron 3.5 Lightning is a 30-billion-parameter mixture-of-experts model with open weights, published on Hugging Face, ModelScope, OpenRouter, and build.nvidia.com as an NVIDIA NIM microservice. NVIDIA claims up to 4x faster output speed against models in its class, which it translates to roughly 30% faster completion on agentic tasks. It runs on RTX PCs, DGX Spark and Station, Jetson, workstations, data centers, and cloud — and it is post-trainable on your own data through NeMo.
NeMo Switchyard is the more interesting half. It is an open-source routing library, published on GitHub, that sits between your agent and the models and keeps routing logic separate from providers. It routes on three signals: which model can actually do the task, what the task costs in latency and dollars, and what the infrastructure is doing right now.
The numbers NVIDIA published, in its developer writeup:
- A LangChain benchmark showed a 74% cost reduction using escalation routing between Lightning and Claude Opus 4.8
- Cognition, running it on FrontierCode, reported 50.6% accuracy at $3.11 mean cost — within 2.8 percentage points of Opus 5, at about 28% lower mean cost
Read those as vendor benchmarks, because they are. Named integrations include LangChain, Kong, LiteLLM, and Boomi.
Why model routing matters for your business
Escalation routing is the pattern worth stealing even if you never install Switchyard. Try the cheap model first, check the result, and pay for the expensive one only when the cheap one fails the check. That is not an NVIDIA idea — it is the same shape as Alibaba's classify-first support system — and it works because your agent's workload is not uniformly hard. Most of it is plumbing.
The catch is the check step. Routing only saves money if you can tell a bad cheap answer from a good one without asking the expensive model. For a code agent that is a test suite. For a data extraction agent that is a schema validator. For a support agent that is a confidence threshold. If you cannot name your check, routing just moves the failures downstream where they cost more.
The other reason to care: a router is an abstraction layer you own. Providers retire aliases, reprice tiers, and gate capacity. A routing layer with providers behind an interface turns each of those events into a config change instead of a sprint.
Key takeaways
- NVIDIA released Nemotron 3.5 Lightning (30B MoE, open weights) and NeMo Switchyard, an open-source model routing library, on August 11, 2026
- Reported results: 74% cost reduction on a LangChain escalation-routing benchmark; Cognition hit 50.6% on FrontierCode at ~28% lower mean cost than Opus 5 — both vendor-published
- Escalation routing works only when you have a cheap, reliable check on the cheap model's output; name the check before you build the router
- Owning the routing layer turns model retirements and price changes into config edits, not rewrites
Paying frontier prices for plumbing? We build agent systems with a routing layer you own, a check step on every cheap-model call, and providers behind an interface you can swap. See how we build it or send us your token bill.
Sources: NVIDIA Blog, NVIDIA Developer Blog.
- #nvidia
- #model-routing
- #ai-agents
- #open-weights
- #inference-cost
Tommy Rush — Founder, Rush Commerce
Operator turned builder. 15+ years running operations — now shipping the systems businesses run on. More
Get The Rush Report weekly — one email, zero fluff.
Keep reading
River AI raises $1.1B to make custom models the default
A two-month-old startup raised $1.1B from General Catalyst, Nvidia and AMD to train company-owned models on open weights. Portability just got funded.
Read itOpenAI COO Brad Lightcap leaves: your roadmap isn't a person
OpenAI's longest-serving executive is out — the fourth senior departure since July. What continuous vendor leadership churn means for the contracts you signed.
Read it