Trimio Field Notes

OpenRouter Fusion Charges You More. Trimio Charges You Less.

June 15, 2026 7 min read routingopenrouterlcr2quality-budget

This morning OpenRouter shipped Fusion — a new model that fans your prompt to 3–5 frontier LLMs simultaneously, then uses a judge model to synthesize the "best" answer. The HN thread hit 65 points in the first few hours. The top comments were engineers who had built similar systems themselves, doing the math out loud:

"I discovered that when you ask one model to judge another's response you don't actually get a better answer. You are just asking it 'how closely does this resemble the answer you would have given me.'"

"7x slower and 4x the cost vs. just calling Opus 4.7 directly."

"This would be super pricy if the prompts are dynamic and not optimised for caching."

The organic engineer critique is instructive because it arrived before any vendor framing could shape it. The people who understand inference cost best built the same thing and concluded it doesn't work the way it's priced.

We went the other direction. Yesterday we shipped LCR V2 Quality Budget — a per-org routing strategy that does the opposite of Fusion in every dimension that matters for production workloads.

What Fusion does

Essential
Fusion routes one prompt to 3–5 models simultaneously, synthesizes the responses, and charges you for all of them. The DRACO benchmark shows a 3.7-point quality gain at 3–4× the cost. Useful for one-shot high-stakes prompts. Wrong architecture for production.

Fusion works like this:

  1. You send a prompt.
  2. OpenRouter fans it to 3–5 frontier models in parallel (each with web search).
  3. A judge model synthesizes the responses, resolving contradictions and surfacing consensus.
  4. You receive one answer.
  5. You pay for all of them.

The quality preset uses Claude Opus 4.8 + GPT-5.5. The budget preset uses Gemini 3 Flash + Kimi K2.6 + DeepSeek V4 Pro. OpenRouter's DRACO benchmark comparison: Fusion scores 69.0% vs. solo Fable 5 at 65.3%. A 3.7-point quality improvement.

The cost: cumulative across all models in the ensemble, typically 3–4× a single frontier call.

Fusion makes sense for exactly one use case: high-stakes, low-volume, one-shot prompts where maximum quality justifies the cost premium and latency penalty. Legal document review. Financial modeling. Strategic analysis where a human reviews the output before acting.

It is the wrong architecture for the workloads that make up 95% of enterprise AI spend.

What LCR V2 Quality Budget does

Essential
Quality Budget routes every prompt to one model — the cheapest one that clears your quality floor and savings gate. You set the dials: accept up to X% quality reduction, only reroute if it saves at least Y%. The engine enforces it per org, per request.

Quality Budget (PR #784, shipped June 14) adds a second routing strategy to LCR V2 alongside the existing floor mode. Here's how it works:

You configure two parameters per org:

The engine evaluates every eligible candidate model against both gates. If a model clears both — quality loss within X%, savings above Y% — it routes there. If nothing clears both gates, the request stays on the original model. No reroute happens unless both constraints are satisfied simultaneously.

OpenRouter Fusion
3–4× cost
3.7 pts quality gain. N models billed.
Trimio Quality Budget
40–60% savings
Configurable quality floor. 1 model billed.

The structural difference: Fusion is an additive cost layer. Quality Budget is a multiplicative cost reducer. You cannot deploy both strategies simultaneously — they are solving opposite problems for opposite buyer profiles.

The engineer critique is Trimio's value proposition

Essential
The HN thread critique of Fusion — "judge synthesis doesn't improve the answer, it just picks the most familiar-looking one" — is precisely why Trimio routes to a single model. One inference call. One bill. No synthesis overhead.

The most technically precise critique in the HN thread was this one:

"I discovered that when you ask one model to judge another's response you don't actually get a better answer. You are just asking it 'how closely does this resemble the answer you would have given me.'"

This is the model-evaluation literature compressed into one sentence. LLM-as-judge benchmarks are systematically biased toward responses that resemble what the judge model would have generated. An ensemble that uses Claude Opus as its synthesis layer will produce "better" outputs that happen to look like Claude Opus outputs — because Claude Opus is grading the papers.

The DRACO benchmark's 3.7-point gain is real, but it's measuring benchmark performance, not your workload performance. For code generation, the judge synthesis may add genuine value by catching one model's errors with another's output. For most enterprise workloads — summarization, classification, extraction, structured output generation — the quality gain is statistical noise.

More importantly: the quality improvement is bounded by the quality of the judge model, which is itself one of the ensemble members. You've added 3× the cost and latency to achieve a quality improvement that's capped by the system you built.

Trimio's architecture doesn't try to synthesize quality from multiple models. It routes to the single model that already has the quality you need, at the lowest price that clears your stated constraints. That's a different problem with a different solution.

The production cost math

Essential
At 1M requests/month: Fusion Quality preset adds ~$3,000–$4,000 per 1M tokens above a single Opus 4.8 call. Quality Budget removes $800–$1,200 per 1M tokens by routing to compliant cheaper models. The gap at production scale is not marginal.

Let's run the math on a production workload. Assume 1M requests per month, average 1,000 tokens per request (input + output), currently routed to Claude Opus 4.8 at $5/$25 per million tokens.

Baseline monthly cost (Opus 4.8 only): roughly $15,000–$30,000 depending on input/output ratio.

With Fusion (Quality preset): Opus 4.8 + GPT-5.5 + judge synthesis pass. Multiply by 3–4×. Monthly cost: $45,000–$120,000. Quality gain: 3.7 points on DRACO benchmark.

With Quality Budget (X=5%, Y=20%): Requests that can be satisfied by Xiaomi Mimo V2.5 Pro ($0.44/$0.87) or DeepSeek V4 Pro ($0.44/$0.87) route there. Both models clear the quality floor for the majority of non-frontier workloads. Monthly cost: $6,000–$12,000. Quality reduction: within the 5% gate per request. Savings: 40–60% against the Opus baseline.

The comparison isn't "Fusion vs. Quality Budget." They're not competing. Fusion is for the researcher who wants maximum quality and has no cost constraint. Quality Budget is for the engineering team that has a real budget and wants to maximize value within it. These are structurally different buyers with structurally different problems.

The question for every enterprise AI operator is which of these describes your actual workload.

When Fusion is the right call

Fusion is genuinely useful for:

Fusion is the wrong call for:

What shipped yesterday

Essential
PR #784 ships per-org Quality Budget with two configurable dials: quality_loss_pct (max acceptable quality reduction %) and min_savings_pct (minimum savings gate). Existing orgs are unchanged — floor mode is the default. Delta mode is opt-in per org.

The Quality Budget ships two modes:

Floor mode (default): The existing LCR V2 behavior. An absolute quality score floor — any model above the floor is eligible, the cheapest wins. Zero behavior change for all existing orgs.

Delta mode (Quality Budget): Relative quality-loss band: anchor_score × (1 − X) becomes the dynamic floor. Plus the blended-price savings gate: only reroute if savings ≥ Y%. Both gates must clear simultaneously.

The "anchor score" is the MQVA quality score of the model that would have been selected under floor mode — the cheapest model that clears the absolute quality floor. Delta mode then asks: "Is there a model that's X% cheaper in quality terms than the anchor, and saves Y% in cost?" If yes, route there. If no, keep the anchor.

The savings gate is the part that makes this production-safe. Without a minimum savings threshold, the engine will reroute to a marginally cheaper model ($5.00 → $4.97 per million tokens) to stay within the quality band. The savings gate prevents this: if the reroute doesn't deliver meaningful cost reduction, the quality concession isn't worth it.

The enterprise sales conversation

The question every enterprise buyer asks when evaluating intelligent routing is: "How do I know Trimio won't route my GPT-5.5 requests to a cheaper model that degrades output quality?"

Before Quality Budget, the answer was: "The quality floor ensures any selected model meets your minimum quality threshold." True, but abstract.

After Quality Budget, the answer is: "You set X=5% and Y=20%. Any reroute must deliver a quality reduction within 5% of your anchor model and produce at least 20% cost savings — or we keep your original model. You control both dials. The engine enforces both gates. You can audit every routing decision in the UI."

That's a concrete, configurable, auditable answer to a concrete objection. The prospect can see their quality tradeoff parameters in the dashboard. They can see the per-request routing decisions and whether each one cleared both gates. The abstraction is gone.

OpenRouter Fusion's answer to the same question is: "We route to multiple models and synthesize the best answer." The buyer doesn't control the quality floor. They don't control the cost tradeoff. They pay more and get a benchmark score improvement they may or may not care about.

Different products. Different buyers. But the market signal from the Fusion launch is clear: quality-aware routing is now a feature race. The question is whether the industry converges on "spend more to get better" or "spend less to get the same." We believe the production infrastructure market answers that question the same way it answered it for compute, storage, and bandwidth.

Trimio LCR V2 with Quality Budget is available now. Start Free to get early access, or read how the routing architecture works.

Trimio
Route smarter. Spend less.
LCR V2 Quality Budget routes every request to the cheapest model that meets your quality floor — with configurable tolerance and savings gates. One API call. One bill. Zero ensemble overhead.