
Fireworks AI has released Fireworks Nexus, an AI management and routing platform aimed at engineering organizations. It connects the coding tools developers already use to a managed layer of open-weight models.
The problem it targets is well documented. Forbes reported that Uber exhausted its entire 2026 AI budget in four months. Claude Code had reached roughly 5,000 engineers after a December rollout. Fireworks cites the same report, noting agentic adoption climbed from about a third of engineers to more than four-fifths in two months.
Fireworks frames the underlying issue as a mismatch, not an overspend. Most organizations run routine work at frontier prices. Operational complexity has made switching to open-weight models unattractive for platform teams.
Fireworks Nexus
Nexus is composed of three components:
1. Enterprise controls and cost observability: Teams set budgets at the team or company level. They track ROI across models and tools, and enforce policy from one place. Requests run on the Fireworks production inference platform, with US-hosted endpoints, zero data retention, and coverage across 20 global data centers.
2. Workflow continuity: FireConnect is a one-line install that maps harness model slots to Fireworks models. It is released under Apache 2.0 and can be installed from the Fireworks Dashboard in a single command. Claude Code, Codex and OpenCode keep working unchanged. FireConnect runs on Fireworks Serverless APIs that are Anthropic- and OpenAI-compatible, so most tools connect with a base URL and a model ID.
3. Intelligent traffic management: A custom trained model scores each request’s difficulty. Routine requests go to a cost-effective open-weight model served by Fireworks. Difficult requests pass through to your existing provider on your own key, which Fireworks states is never stored server-side. The research team reports this typically delivers a 3–5× cost reduction.
One important note for anyone planning a rollout. The router is a research preview. It currently routes between Claude Opus 5 and GLM-5.2, so the pass-through path requires an Anthropic key. An all-open configuration routes between Kimi K3 and GLM-5.2 instead.
Three parts. Select one to expand the detail.
stack.forEach(function(s,i){
h+=”;
});
h+=’
‘;
h+=’
Component descriptions follow the Fireworks Nexus announcement of 26 July 2026. The router is a research preview.
‘;
out.innerHTML=h;
paintDetail(0);
root.querySelectorAll(‘.box’).forEach(function(b){
var go=function(){
root.querySelectorAll(‘.box’).forEach(function(x){x.classList.remove(‘on’);});
b.classList.add(‘on’); paintDetail(+b.getAttribute(‘data-i’));
};
b.addEventListener(‘click’,go);
b.addEventListener(‘keydown’,function(e){if(e.key===’Enter’||e.key===’ ‘){e.preventDefault();go();}});
});
}
function paintDetail(i){
var s=stack[i],d=document.getElementById(‘mtpnx-det’);
d.innerHTML=’▸ ‘+s.t+’‘;
size();
}
function renderArize(){
var max=1.233;
var rows=arize.slice().sort(function(a,b){
var x=a[sortKey],y=b[sortKey];
if(typeof x===’string’){return sortAsc?x.localeCompare(y):y.localeCompare(x);}
return sortAsc?x-y:y-x;
});
var h=”
Cost per successful task — 2,400 runs
“;
h+=’
40 Terminal-Bench tasks, 10 models, 6 trials each. Click a column to re-sort.
‘;
h+=’
Cost per successful task = all spend across every attempt, divided by completed tasks. Highlighted rows are open-weight models served by Fireworks. Prices as of July 2026; pass rates carry roughly a ±6 point 95% confidence interval.
‘;
out.innerHTML=h;
out.querySelectorAll(‘th[data-k]’).forEach(function(th){
th.addEventListener(‘click’,function(){
var k=th.getAttribute(‘data-k’);
if(k===sortKey){sortAsc=!sortAsc;}else{sortKey=k;sortAsc=(k!==’pass’);}
renderArize();
});
});
size();
}
function renderDiff(){
var h=”
Where the frontier premium actually goes
Pass rate split by task difficulty. Same runs, different question.
‘;
h+=’
On easy tasks the cheap models are competitive: Kimi K2.6 passes 73% where GPT-5.5 passes 69%. On hard tasks only the top tier holds up. That gap is the whole argument for routing by difficulty instead of buying one model for every job.
‘;
out.innerHTML=h; size();
}
function renderFaros(){
var maxc=2.06;
var h=”
211 real engineering tasks, 7 model-and-harness routes
“;
h+=’
Faros AI replayed historical pull requests across 12 repositories. Judge score is a model-based rubric.
‘;
h+=’
Claude Code on GLM-5.2 scored 0.568 against 0.521 for Claude Code on Opus 4.8, at $0.92 per task against $1.76. Cache share was near-identical between the two top routes, so the cost gap is not a caching artifact. Results are cohort-specific, not a universal leaderboard.
‘;
out.innerHTML=h; size();
}
function renderRoute(){
var pol=[
{n:’gpt-oss-120b alone’,s:’8 / 40′,c:0.054},
{n:’GPT-5.5 alone (best single model)’,s:’25 / 40′,c:0.636},
{n:’Oracle routing (ceiling, needs hindsight)’,s:’34 / 40′,c:0.228},
{n:’Escalation ladder (deployable)’,s:’32.3 / 40′,c:0.525},
{n:’Naive escalation through all 10 models’,s:’34.5 / 40′,c:1.319}
];
var h=”
Measured routing policies
Simulated over the same 2,400 real runs. Coverage counts tasks solved in at least 4 of 6 trials.
‘;
h+=’
Illustrative blend — drag to set the share of work handled by the cheap rung
‘+
‘
cheapfrontier
‘+
‘
”+
”+
‘
vs GPT-5.5 alone
2.8× lower
‘+
‘
‘;
h+=’
The slider is a straight linear blend of two measured endpoints, $0.054 for gpt-oss-120b and $0.636 for GPT-5.5. It is an illustration of the arithmetic, not a measured result, and it ignores coverage: the cheap model reliably solves only 8 of 40 tasks on its own. Fireworks quotes a 3–5× cost reduction for its own router, which is in research preview.
‘;
out.innerHTML=h;
var sl=document.getElementById(‘mtpnx-sl’);
function upd(){
var f=+sl.value/100, c=0.054*f+0.636*(1-f);
document.getElementById(‘mtpnx-share’).textContent=sl.value+’%’;
document.getElementById(‘mtpnx-cost’).textContent=”$”+c.toFixed(3);
document.getElementById(‘mtpnx-save’).textContent=(0.636/c).toFixed(1)+’\u00d7 lower’;
}
sl.addEventListener(‘input’,upd); upd(); size();
}
var views={stack:renderStack,arize:renderArize,diff:renderDiff,faros:renderFaros,route:renderRoute};
tabs.forEach(function(t){
t.addEventListener(‘click’,function(){
tabs.forEach(function(x){x.setAttribute(‘aria-selected’,’false’);});
t.setAttribute(‘aria-selected’,’true’);
cmdEcho.textContent=t.textContent.replace(/^\$/,”).trim();
sortKey=’succ’; sortAsc=true;
views[t.getAttribute(‘data-v’)]();
});
});
function size(){
var h=(root.offsetHeight||600)+40;
try{ if(window.frameElement){window.frameElement.style.height=h+’px’;} }catch(e){}
try{ parent.postMessage({mtpEmbed:’nexus-explainer’,height:h},’*’); }catch(e){}
}
window.addEventListener(‘resize’,size);
renderStack();
setTimeout(size,120); setTimeout(size,600);
})();
” scrolling=”no” loading=”lazy” style=”width:100%;height:760px;border:0;display:block;overflow:hidden;background:#0a0a0a;border-radius:10px;”>
Performance
Fireworks research team has been testing Nexus with dev teams including Notion and Doximity. Preliminary results show a one-third reduction in cost per merged pull request. The research team also reports a blended token rate roughly a quarter of the closed model labs. These are vendor figures from a preview program, and should be read that way.
The more useful evidence comes from two independent evaluations Fireworks cites.
Faros AI ran 211 real engineering tasks drawn from 12 repositories across seven model-and-harness routes. Claude Code on GLM-5.2 scored 0.568 on a model-based rubric judge. Claude Code on Opus 4.8 scored 0.521. The cost gap was larger than the quality gap: $0.92 per task against $1.76. Cache share was 89.7% and 99.7% respectively, so caching does not explain the result. Faros stresses that the cohort is company-specific and not a universal leaderboard.
Arize, in a joint study with Fireworks, evaluated 10 models on 40 Terminal-Bench tasks at six trials each. That is 2,400 runs and $626 of API spend, graded by each task’s own test suite. The headline metric is cost per successful task, which counts every failed and retried attempt.
Two findings from that study bear directly on the Nexus design. On easy tasks the frontier premium buys nothing: Kimi K2.6 passed 73% where GPT-5.5 passed 69%. On hard tasks only the top tier competes, with GPT-5.5 at 51% and Kimi K3 at 32%. Arize’s evaluation harness is open source, so teams can rerun it on their own workloads.
Routing simulated over those runs beat every single-model strategy. A deliberate escalation ladder reached $0.525 per successful task while reliably solving 32.3 of 40 tasks. GPT-5.5 alone cost $0.636 and reliably solved 25 of 40. Naive escalation through all ten models cost $1.319, worse than any single model tested. Ladder design is not optional.
How teams actually turn it on
There are three practical paths, and they have different blast radii.
The FireConnect path is the lowest friction. The installer requires the Claude Code CLI already on PATH, prompts once for a Fireworks API key, registers a plugin marketplace, and writes Claude Code settings with a timestamped backup. It exposes /fireconnect:on, /fireconnect:off, /fireconnect:setup, /fireconnect:models and /fireconnect:set-models.
The second path skips the plugin entirely. Set ANTHROPIC_BASE_URL and a Fireworks key, or use the OpenAI-compatible client with a changed base URL and model ID. Arize noted that adding a model to its harness was one config line. That interchangeability is what makes an escalation ladder buildable.
The third path is the router itself, which sits in front of an existing frontier contract.
var h=”
Step “+(s+1)+’ of ‘+path.steps.length+’
‘+step.t+’
‘;
if(step.h) h+=step.h;
if(step.code) h+=”;
if(step.after) h+=step.after;
body.innerHTML=h;
var cp=body.querySelector(‘.cp’);
if(cp){
cp.addEventListener(‘click’,function(){
var txt=body.querySelector(‘pre code’).textContent;
var done=function(){cp.textContent=”copied”;setTimeout(function(){cp.textContent=”copy”;},1400);};
if(navigator.clipboard&&navigator.clipboard.writeText){
navigator.clipboard.writeText(txt).then(done,function(){fallback(txt,done);});
}else{fallback(txt,done);}
});
}
prev.disabled=(s===0);
next.disabled=(s===path.steps.length-1);
next.textContent=(s===path.steps.length-1)?’Done’:’Next \u2192′;
cnt.textContent=path.steps.length+’ steps’;
size();
}
function fallback(txt,cb){
var ta=document.createElement(‘textarea’);
ta.value=txt; ta.setAttribute(‘readonly’,”);
ta.style.position=’absolute’; ta.style.left=”-9999px”;
document.body.appendChild(ta); ta.select();
try{document.execCommand(‘copy’);cb();}catch(e){}
document.body.removeChild(ta);
}
prev.addEventListener(‘click’,function(){if(s>0){s–;render();}});
next.addEventListener(‘click’,function(){if(s
Key Takeaways
- Independent runs from Faros AI (211 tasks) and Arize (2,400 runs) support routing by difficulty, not by brand.
- Fireworks Nexus is a drop-in AI management and routing layer for engineering orgs, announced July 26, 2026.
- Three parts ship: enterprise cost controls, FireConnect for workflow continuity, and a difficulty-aware router.
- FireConnect is Apache 2.0, installs in one line, and keeps Claude Code, Codex and OpenCode unchanged.
- Fireworks quotes 3–5× cost reduction and a 33% drop in cost per merged PR in preliminary customer testing.
Sources: Fireworks Nexus announcement, FireConnect repository, Faros AI evaluation and Arize cost-per-successful-task benchmark





