OrcaRouter: Fusion Mini

orcarouter/fusion-mini
Mini
Text in · Text out · 1M ctx

Fable 5 got pulled. Fusion rebuilds that level — from the models you can still call, at a fraction of the cost.

Overview

Stop waiting for the next model — the next jump in capability is a panel, not a checkpoint. Fusion sends your hardest prompts to several frontier models at once, then a judge weighs where they agree, catches where they contradict, and returns the single strongest answer — cross-checked against the rest. Reach for it on the work that actually matters — deep reasoning, hard coding, research, expert critique — anywhere being wrong costs more than a few extra completions.

How it works

1

Route by task

Casual chat goes straight to a cheaper default. Coding, agent, and tool-using requests fan out to the panel — where a second opinion actually pays off.

2

Fan out to a panel

Your prompt hits several frontier models at once — independent attempts that each catch what the others miss.

3

Pick the best answer

A judge reads every candidate and returns the single strongest one — cross-checked against the others, not a single model's first try.

Only where it helps. Fusion fans out to the panel on coding, agentic, tool-using and hard prompts — casual chat goes straight to a cheaper default, so you pay for the panel only on the requests where a second opinion pays off.

Why a panel beats one model

A single model gives you one attempt at your prompt — and no way to catch it when it is wrong. Fusion runs several frontier models on the same prompt at once, then an independent judge reads every answer and returns the strongest one, cross-checked against the others. Disagreement between strong models is signal: it surfaces the hard cases where one model alone would quietly get it wrong.

Single model

One model, one answer. No second opinion — if it is wrong, you ship it wrong.

Auto-router

Picks one model per prompt to save cost. Smarter selection — but still a single answer.

Fusion

A panel answers in parallel; a judge returns the strongest, cross-checked against the rest.

Panel + judge (Mixture-of-Agents)65.1%
Single top model (GPT-4o)57.5%
AlpacaEval 2.0 length-controlled win rate — a panel of models with an aggregator outscores a single top model. Mixture-of-Agents, Wang et al. 2024

Models in this router

ModelRoleContext
Claude Opus 4.8Panel · Judge1M
GPT-5.5Panel1M

Want a different combination? Build your own panel from the "Claude Fable 5 Level" templates in the routing DSL editor.

Built on the routing DSL

Fusion is not special-cased — it is a built-in config of our routing DSL, a small sandboxed language for defining exactly how each request is routed. Clone the "Fable 5 Level" template and change the panel, the judge, the gating rule, or the way the winner is chosen.

Best of NFusion default

A judge model ranks every candidate and serves the strongest one verbatim — never a diluted merge.

Majority vote

The panel votes on a structured answer — no extra judge call.

Synthesize

An aggregator model fuses the candidates into one improved answer (Mixture-of-Agents).

Tests pass

For code: the candidate whose patch actually passes your test harness wins.

First

A race — the lowest-latency leg wins, for when speed matters most.

No black box. Build your own router on the DSL and every fan-out is recorded — which models raced, each leg’s latency and status, and which answer the judge picked — so you can see in the console exactly why an answer won.

Open the routing DSL editor

Code samples

import os

from openai import OpenAI

client = OpenAI(
    base_url="https://api.orcarouter.ai/v1",
    api_key=os.environ["ORCAROUTER_API_KEY"],
)

response = client.chat.completions.create(
    model="orcarouter/fusion-mini",
    messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

Billing

Because fusion runs every panel member plus a judge, a fan-out request is billed as the sum of those underlying completions rather than a single model — and only on the requests that actually fan out. Zero markup.

FAQ

Where can I access the Claude Fable 5 API?
The Claude Fable 5 API was delisted and restricted, so it is no longer broadly callable. OrcaRouter: Fusion Mini is a drop-in, OpenAI-compatible alternative: it runs a panel of frontier models in parallel and a judge returns the strongest answer — a Fable-5-level option you can call today as orcarouter/fusion-mini.
What is OrcaRouter: Fusion Mini?
A curated multi-model router. On real work it runs a panel of models in parallel and a judge picks the single best answer, cross-checked against the rest; easy requests go to a cheaper default.
How is it billed?
As the sum of the panel members plus the judge it actually ran, only on the requests that fan out. Zero markup.
Does Fusion merge the answers together?
No. The judge picks the single strongest candidate and returns it verbatim — you always get a real model’s answer, never an averaged or blended one.
What happens if one of the models fails?
The other legs still run and the judge picks from whatever succeeded; routing also fails over to the next-best deployment, so one provider hiccup does not fail the request.
Does every request run the whole panel?
No — only coding, agentic, tool-using and hard prompts fan out. Casual chat goes to a cheaper default, so you are billed for the panel only where a second opinion helps.