Models

Configure model selection, fallback, reusable selectors, and compatibility across provider protocols.

7 min readEdit this page

This page controls what a requested model id means after model sources are connected. Use Supported Models to browse the public catalog and Models & providers to connect keys, private endpoints, or custom model declarations.

Model resolution turns the request's model into an ordered chain of eligible provider endpoints. Most policies need only a logical model id or a named fallback chain.

Model selector forms

The separator carries selection meaning:

FormMeaningExample
provider/modelA stable logical model id from the registry; every eligible provider that declares it can join the routeanthropic/claude-opus-4.8
provider:modelA direct local route through one configured provideranthropic:anthropic/claude-opus-4.8

Prefer the slash form in application code. Use the colon form when the provider itself is part of the decision, such as a subscription-backed account or a specific custom endpoint.

Resolution order

BitRouter resolves a request in four stages:

  1. Apply a known @preset and optional :variant.
  2. Treat provider:model as an explicit provider route.
  3. Resolve a matching entry under models as a virtual model.
  4. Otherwise, build a cascade from active providers that declare the bare model.

Subscription-backed providers are explicit-route-only. A bare model never silently consumes a personal Claude or Codex subscription.

SelectorUse it for
openai:openai/gpt-5.4Pin one provider and logical model
openai/gpt-5.4Route a logical model through eligible providers
codingUse a named chain from models
@fastApply a reusable preset
@fast:costApply a preset, then a known variant
bitrouter/autoUse the routing policy bound to the auto preset

Candidate eligibility

For a bare model, BitRouter filters active providers by only, ignore, required tags, request capabilities, and protocol compatibility. It then orders candidates by explicit provider priority or the registry's provider-class priority, followed by provider ID.

Presets and variants accept three sort values:

Valuealpha.31 behavior
alphabeticalProvider priority, then provider ID
costAccepted, but currently uses the same deterministic fallback order
latencyAccepted, but currently uses the same deterministic fallback order

Cost- and latency-based live scoring are not active in alpha.31. Do not describe :cost or :latency as measured optimization until a release provides the corresponding metrics-backed recommender.

Use routing.only, routing.ignore, or provider priority when the order must be explicit today.

Fallback chains

Define an ordered chain with a virtual model:

models:
  coding:
    strategy: priority
    endpoints:
      - provider: openai
        service_id: gpt-5
      - provider: anthropic
        service_id: claude-sonnet-4-6

A request for coding tries endpoints in YAML order. BitRouter advances after retryable upstream failures: 5xx, 408, 429, transport or timeout failures, invalid upstream responses, and exhausted provider credit. Other client-side 4xx errors fail immediately.

Use strategy: cascade only when the endpoints are interchangeable and selection preferences may reorder or filter them. In alpha.31, cost and latency sorts still use the deterministic priority/provider-ID fallback described above.

Presets

Presets put model substitution, prompt defaults, parameters, routing-policy binding, and candidate filters behind a short name:

presets:
  fast:
    model: coding
    system_prompt: "Be concise."
    params:
      temperature: 0.2
    routing:
      only: [openai, anthropic]

Call it as @fast. Request fields win over preset defaults, so a preset provides a stable baseline without taking control away from the caller.

bitrouter/auto is the public spelling of the auto preset and requires that preset to be bound to a routing policy. Create the binding with bro policy init rather than hand-authoring a partial lock file.

See bitrouter/auto for the operational walkthrough: send traffic, inspect the settled route, override one call, and publish reviewed policy changes.

Variants

A variant changes candidate preferences only:

variants:
  private:
    routing:
      require_tags: [private]
  primary:
    routing:
      only: [openai]

Append a known variant to a model or preset, such as coding:private or @fast:primary. An unknown suffix is not removed; it remains part of the model selector.

Variants do not grant access, bypass guardrails, or change virtual-key policy.

Protocol compatibility

A model route can receive one API shape and call an upstream provider that speaks another. BitRouter handles that boundary in four steps:

  1. Normalize the inbound request into a canonical representation.
  2. Derive requirements such as tool calling or structured outputs.
  3. Remove model/provider routes that explicitly lack a required capability.
  4. Render the selected route in its outbound provider protocol.

Protocol translation and model selection are related but separate: translation preserves the caller's intent, while capability filtering determines which routes are eligible to receive it.

Structured outputs across protocols

Structured output is a request-time constraint, not a global router setting. Supply a JSON Schema in the client's native request shape:

Inbound APISchema field
OpenAI Chat Completionsresponse_format.json_schema
OpenAI Responsestext.format
Anthropic Messagesoutput_config.format
Google Generate ContentgenerationConfig.responseSchema

BitRouter promotes these fields into one canonical response-format constraint, then renders the corresponding outbound field after model resolution. The same request can therefore resolve to a Messages or Generate Content upstream without the caller rewriting the schema field.

curl http://127.0.0.1:4356/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai:gpt-5",
    "messages": [{"role": "user", "content": "Return the issue priority."}],
    "response_format": {
      "type": "json_schema",
      "json_schema": {
        "name": "issue_priority",
        "strict": true,
        "schema": {
          "type": "object",
          "properties": {
            "priority": {"type": "string", "enum": ["low", "medium", "high"]}
          },
          "required": ["priority"],
          "additionalProperties": false
        }
      }
    }
  }'

There is no router-wide schema or enable switch. Presets can supply ordinary request defaults, but the response constraint belongs to each request.

Declare custom capabilities

Routes with explicit capability declarations remain eligible only when they include every capability required by the request. For a private endpoint, declare support only after verifying that exact provider/model route:

providers:
  my-cluster:
    models:
      - id: team/model
        capabilities: [structured_outputs]

The public model registry carries these declarations for built-in routes. See Models & providers when adding a private endpoint or custom model.

Compatibility limits

BitRouter preserves and translates the constraint across supported wire protocols. The upstream model and provider remain responsible for producing schema-conforming output.

JSON Schema support differs by upstream. Use the subset accepted by every provider in a fallback chain, and test the exact models you deploy. If the selected outbound protocol cannot represent the response format, BitRouter fails the request instead of silently dropping the schema.

Canonical fieldChat CompletionsResponsesMessagesGenerate Content
Namejson_schema.nametext.format.nameNot representedNot represented
Descriptionjson_schema.descriptiontext.format.descriptionNot representedNot represented
Strictjson_schema.stricttext.format.strictProvider behaviorProvider behavior
Schemajson_schema.schematext.format.schemaformat.schemaresponseSchema

Fields a destination protocol cannot represent are not invented. Keep portable behavior in the schema itself.

Inspect and verify

bro config validate -c bitrouter.yaml
bro models --provider openai
bro route coding -c bitrouter.yaml
bro route @fast:primary -c bitrouter.yaml

bro route uses the running daemon when available and otherwise resolves from the selected policy file. It is the authoritative way to review the candidate chain before sending traffic.

How is this guide?

On this page