models/Unbiased/Pareto
U
Unbiased

Pareto

text
Playground →Compare

Pareto is Unbiased's blended AI model. It engages multiple language models in parallel for each request, synthesizes one answer, and supports text and vision inputs through a single API response.

MODALITIES
text
INPUT
$2.50 /1M
OUTPUT
$7.50 /1M
CONTEXT
262K tok
MAX OUTPUT
33K tok
RELEASED
2026-09-17

Pareto (unbiased/pareto) is a text model from Unbiased, released 2026-09-17. Context window: 262,144 tokens; max output 32,768. Pricing via AIgateway: input $2.50/M tokens, output $7.50/M tokens. Capabilities: streaming. Call it via https://api.aigateway.sh/v1/chat/completions with the OpenAI SDK — set model="unbiased/pareto".

model · unbiased/pareto

Use this model

model: unbiased/pareto
curl https://api.aigateway.sh/v1/chat/completions \
  -H "Authorization: Bearer $AIGATEWAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"unbiased/pareto","messages":[{"role":"user","content":"hello"}],"stream":true}'

Capabilities

Streaming
CONTEXT
262,144 tok
MAX OUTPUT
32,768 tok

Pricing

Input$2.50 / 1M tokens
Output$7.50 / 1M tokens
You pay pass-through pricing.
Try in playground →CompareAPI referenceSee usage ranking →

Collections

More text models →More from UnbiasedFrontier models →Free-tier models →
API schema

Call Pareto from any OpenAI SDK

POST https://api.aigateway.sh/v1/chat/completions·Content-Type: application/json·Auth: Bearer sk-aig-...

Request body

json
{
  "model": "unbiased/pareto",
  "messages": [
    { "role": "system", "content": "You are a helpful assistant." },
    { "role": "user",   "content": "Hello!" }
  ],
  "temperature": 0.7,
  "top_p": 0.95,
  "max_tokens": 1024,
  "stream": false

}

Response

json
{
  "id": "chatcmpl-abc123",
  "object": "chat.completion",
  "created": 1776947082,
  "model": "unbiased/pareto",
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": "Hello! How can I help you today?"
      },
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 24,
    "completion_tokens": 12,
    "total_tokens": 36
  }
}

Streaming (SSE) — set "stream": true

// 1. Role announcement (first chunk):
data: {"choices":[{"index":0,"delta":{"role":"assistant"},"finish_reason":null}]}

// 2. Content chunks (final answer):
data: {"choices":[{"index":0,"delta":{"content":"Hello"},"finish_reason":null}]}
data: {"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}]}

// Finish chunk:
data: {"choices":[{"index":0,"delta":{},"finish_reason":"stop"}]}

// Terminator:
data: [DONE]

Quickstart

# pip install aigateway-py openai
# aigateway-py adds sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK covers chat — drop-in per our SDK's own guidance.
from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

stream = client.chat.completions.create(
    model="unbiased/pareto",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="", flush=True)

Errors

401authentication_errorInvalid or missing API key
402insufficient_creditsWallet empty (PAYG only)
404not_foundUnknown model or endpoint
429rate_limit_errorOver per-minute limit — see Retry-After header
500server_errorUpstream provider failed (retryable)
503service_unavailableUpstream saturated (retryable)
Full docs →API reference →OpenAPI spec →llms.txt →

Frequently asked questions

What is Pareto?
Pareto is Unbiased's blended AI model. It engages multiple language models in parallel for each request, synthesizes one answer, and supports text and vision inputs through a single API response. It is a text model from Unbiased, accessible via AIgateway's OpenAI-compatible API at slug unbiased/pareto.
How much does Pareto cost via AIgateway?
Input costs $2.50 per 1M tokens; output costs $7.50 per 1M tokens, billed pass-through.
What is the context window of Pareto?
262,144 tokens. Maximum output is 32,768 tokens.
How do I call Pareto from my code?
Point the OpenAI SDK at https://api.aigateway.sh/v1 with your AIgateway key and set model to "unbiased/pareto". The request and response shapes match OpenAI exactly.
Does Pareto support streaming, tool calling, vision, and JSON mode?
Streaming — yes. Tool calling — no. Vision — no. JSON mode — no. Prompt caching — no.
Can I bring my own Unbiased API key (BYOK)?
Yes. Attach a Unbiased key in your AIgateway dashboard and this model flips to pass-through — you pay Unbiased directly and AIgateway adds no platform fee on those calls.