Model Routing
When Codex asks for a model, router.ts resolves it to exactly one configured provider. The rules are
checked in order; the first match wins.
For OpenAI, bare gpt-* ids select one openai provider. Its codexAccountMode chooses
Pool(default, main plus added accounts) or Direct(current caller/main bearer) without changing the
model id. openai-apikey/<model> explicitly selects API-key transport. The two credential routes
do not fall through to one another.
Precedence
Section titled “Precedence”-
Explicit
provider/model— if the id contains/and the part before it is the name of a configured provider, that provider is used and the id is stripped to the part after the slash.anthropic/claude-opus-5 → provider "anthropic", model "claude-opus-5"ollama-cloud/glm-5.2 → provider "ollama-cloud", model "glm-5.2"openrouter/openai/gpt-5.6-sol → provider "openrouter", model "openai/gpt-5.6-sol"This is the unambiguous form, and the one Codex’s model picker uses for routed models. If the named provider is disabled, this explicit form throws instead of routing.
-
A provider’s
defaultModel— if any provider’sdefaultModelequals the id, that provider is used (id passed through unchanged). -
Built-in prefix patterns — the id is matched against known model-family prefixes, then routed to a configured provider of that name (or name-prefix):
Prefixes Provider claude-,claude-sonnet-,claude-opus-,claude-haiku-anthropicgpt-,o1-,o3-,o4-bare ids use the configured openaiaccount mode; useopenai-apikey/for API-key transportllama-,mixtral-,gemma-groqThis matcher is name-based and, unlike the
defaultModel/models[]scans, currently does not filter a matching provider whosedisabledflag is true. -
A provider’s
models[]— if no prefix rule won and an active provider lists the id in itsmodels[], that provider is used. This order matters: with an OpenAI-named provider configured, a baregpt-*id reaches it before another provider’smodels[]claim. -
Default provider — if nothing matched, the id is sent to
config.defaultProviderunchanged. (If no default provider is configured, or it is disabled, routing throws.)
API keys and environment variables
Section titled “API keys and environment variables”Whatever route is chosen, the provider’s apiKey is resolved through resolveEnvValue(): a value of
${OPENAI_API_KEY} or $OPENAI_API_KEY is expanded from the environment at request time, so secrets
never need to live in config.json.
Catalog visibility and context caps
Section titled “Catalog visibility and context caps”Routing and catalog visibility are separate controls:
disabledModelshides namespaced routed ids from the Codex catalog and/v1/models; a bare native GPT slug is kept in the catalog withvisibility: "hide". It does not reject a direct request for that model.- A provider’s non-empty
selectedModelsis another catalog allowlist. Live discovery and direct routing still work; only catalog and/v1/modelsemission are narrowed. provider.disabled: trueremoves that provider from catalog discovery. Explicitprovider/modelrequests fail, anddefaultModel/models[]scans skip it.providerContextCapsapplies per-provider Codex-visible context caps.contextCapValueis the shared dashboard value (350,000 by default), but it does nothing by itself until a provider is present inproviderContextCaps. Caps only lower a known context window; they never raise one or change the upstream model’s actual limit.
{ "contextCapValue": 350000, "providerContextCaps": { "anthropic": 350000, "cursor": 350000 }}- Be explicit for routed models. Prefer
provider/model(rule 1) — it’s unambiguous and matches what Codex shows in its picker after a catalog sync. - Seed
models[]ordefaultModelon a provider so short ids (rule 2/4) resolve without theprovider/prefix. - Prefix patterns are a convenience, not a guarantee: they only resolve if a provider with that
name (e.g.
anthropic,openai,groq) is actually configured.
See Configuration for the provider fields these rules read.

