The Cognitive Runtime for AI Agents.
Route each inference call to the cheapest model that holds quality. Cut agent loop costs 40 to 60 percent, live in thirty seconds.
Drop in front of the OpenAI or Anthropic SDK you already use
Any OpenAI- or Anthropic-shaped endpoint drops in behind one base URL. Groq, Mistral, xAI, and self-hosted models are landing on the same shape.
The problem
Every step of every agent loop hits your top model. The bill keeps climbing and nobody can say why.
Pin one frontier model on planning, retrieval, tool calls, and cleanup alike and you pay reasoning rates for work a cheap model would nail. Then the invoice lands as one line, shipping outruns anything finance can categorise, the cost report is a guess, and the audit trail is a Slack thread.
Before and after on a single agent loop
The same five-step LangChain loop, routed two ways.
This is the shadow-mode report we hand you. The Before trace pins every step on the same top-tier reasoning model. The After trace lets the resolver pick the cheapest variant that holds the quality bar on each step. The total drops 49 percent, and nothing in the agent code changes.
Before · vanilla LangChain
one provider, one budgetEvery step on claude-opus-4-8 at thinking=high
- Planningclaude-opus-4-8 · thinking=high$0.42
- Retrievalclaude-opus-4-8 · thinking=high$0.38
- Tool callclaude-opus-4-8 · thinking=high$0.28
- Synthesisclaude-opus-4-8 · thinking=high$0.41
- Verificationclaude-opus-4-8 · thinking=high$0.35
After · IQ Routing
per-step resolver, session envelopeThe resolver picks the cheapest variant per step
- Planningcap:reason-heavy · claude-opus-4-8 high$0.42
- Retrievalcap:long-context-128k · gpt-4o$0.06
- Tool callcap:tool-call-strict · gpt-4o no thinking$0.04
- Synthesiscap:reason-heavy · claude-opus-4-8 high$0.41
- Verificationcap:cheap-fast · gpt-4o-mini$0.01
The fix
One gateway. Six superpowers.
Each one shows up on the dashboard the moment your first request lands.
Works inside the apps that lock models.
Some tools only allow one model family. Point Claude Code, Cursor, or your own app at IQ and it stays inside the family they require, routing to the right tier for each step and never leaking to another vendor. It holds the conversation too, so switching models mid-thread stays safe.
Read the docs →
Repeats resolve before they bill.
When a request matches one IQ has already handled, the answer comes straight back and you are not charged for it again. IQ catches exact repeats and the ones that just mean the same thing, and every team's cache stays walled off from the rest.
Read the docs →
The router is the hard part.
Routing well is the whole product, and it is our core IP. A purpose-built classifier reads each request for true difficulty, weighs it against live cost and latency across providers, and picks the model that clears your quality bar for the least spend, with instant fallback if one slips. It is tuned on a graded prompt set, so it holds quality where a naive cheapest-model router quietly drops it.
Read the docs →
Tagged to your GL.
Per-team budgets, per-key limits, and a four-way input, output, cached, and thinking cost split, written to the ledger and enforced before the provider call.
Read the docs →
A session is one accountable unit.
Every multi-step agent loop tracks per-turn cost, latency, tokens, and step class, and a governor caps how much thinking the session can spend.
Read the docs →
Each step gets the right model.
An agent runs many steps, and most of them don't need your most expensive model. IQ sizes up each one and routes it to the cheapest model that can still do it well, so you get frontier quality where it counts and pay a fraction everywhere else.
Read the docs →
Pricing
Priced so it pays for itself.
Start free in thirty seconds. Scale into Team and Enterprise when the bill makes the case.
Free
One URL for every provider. Bring your own provider keys (BYOK).
- ✓OpenAI, Anthropic, and Google, with one URL for all three
- ✓Bring your own keys (BYOK)
- ✓Semantic cache
- ✓Email support
Team
Most popularEverything in Free plus alerting, org-scoped access, and ERP cost-event export (preview).
- ✓Everything in Free
- ✓Per-team budgets
- ✓Audit log
- ✓Per-team alerting
- ✓Org-scoped access controls
- ✓ERP cost-event export (preview)
- ✓Priority email support
Enterprise
On-prem deployment, SOC2 evidence pack on request, dedicated support.
- ✓Everything in Team
- ✓On-prem or VPC deployment
- ✓SOC2 evidence pack on request
- ✓ERP integrations (preview)
- ✓Dedicated support engineer
Three lines today. A clean bill tomorrow.
Route real traffic in under five minutes.