Managing LLM Models
Overview
The platform manages LLM models catalog-as-code: one canonical, schema-validated file is the source of truth for model definitions, per-model costs, and AutoPilot (copilot) routing. There is no admin UI and no model database — you change models by editing the catalog and opening a PR, git history is the audit log, and the normal deploy pipeline propagates the change to every environment.
The catalog lives at:
autogpt_platform/backend/backend/data/llm_registry/catalog.pyIts schema is defined in catalog_model.py (same directory), and catalog_test.py contains the integrity guards — the file must parse, slugs must be unique, every provider/creator/fallback/routing reference must resolve, and costs must stay within bounds. A catalog PR that passes these tests is structurally sound by construction, which is what makes bot-reviewed catalog changes safe.
Catalog fields
Each CatalogModel entry:
slug
Canonical model identifier (e.g. claude-sonnet-4-6, gpt-5.2-2025-12-11, moonshotai/kimi-k2.5). Referenced by routing cells and fallbacks.
display_name
Human-readable name shown in UIs.
provider
Who serves the model (must match a CatalogProvider.name). Determines which credential/API key is used.
creator
Who trained the model (display metadata; must match a CatalogCreator.name).
context_window / max_output_tokens
Token limits.
price_tier
1 (cheapest) to 3 (most expensive); used for display.
is_enabled
The kill switch. A disabled model is refused at serve time — even when LaunchDarkly routes to it.
visibility
Who may see the model: GA (everyone), EMPLOYEES, ADMINS, or HIDDEN. HIDDEN models still serve when explicitly routed — that is the pre-launch testing state. Informational until the catalog-driven picker lands (today a model stays out of block pickers by not having an enum line); the field is the picker's contract. Visibility never overrides is_enabled.
fallback_model_slug
Standing replacement pointer: the retirement CLI defaults --replacement to it, and it is reserved for future automatic failover.
supports_*
Capability flags (tools, JSON output, reasoning, parallel tool calls). Informational and authored opportunistically — False means not asserted, not "unsupported"; nothing consumes them at runtime yet, so only rely on authored True values.
cost
What users pay: flat run_credits and/or per-1M token credit rates (billing reads these). Optionally provider_*_usd_per_1m: what the provider charges us — the USD list price, used for in-turn cost estimates when a model is priced off its family default (e.g. Kimi K3's $3/$15).
Cost note: the catalog IS the billing source.
MODEL_METADATA,MODEL_COST, andTOKEN_COSTstill exist as names, but they are derived from the catalog at import — there is nothing else to edit. One transitional artifact:pre_catalog_costs_snapshot.jsonpins the prices billed at the cutover, so changing a pre-cutover model's price is a deliberate two-line diff (catalog + snapshot) that shows old→new in review. New models never touch the snapshot, and the first legitimate legacy price change may simply delete the snapshot test instead (it is cutover proof, not a permanent fixture).
CatalogPayload.routing holds AutoPilot's routing cells — which model serves each (mode, tier) combination. Cells ship empty: an unset cell means the CHAT_*_MODEL env vars keep that combination, and claiming a cell is the explicit act of moving its control into the catalog:
Cell values must be transport-ready slugs — the exact spelling the serving transport accepts (OpenRouter's vendor-prefixed dot forms, as above). The catalog's integrity tests enforce this convention.
Cells apply only on the managed cloud deployment (BEHAVE_AS=cloud). Self-hosted installs — cloud transport or local — always resolve LaunchDarkly → env: a cell set for the cloud platform travels in the shipped file but never overrides a self-hosted operator's CHAT_*_MODEL configuration.
Updating the catalog
What each change touches — this is the complete list:
Add a block-selectable model
Catalog entry + one LLMModel name line (llm_registry/llm_models.py). An import-time check refuses to boot if they drift.
Add a copilot-only model
Catalog entry.
Change a price (post-cutover model)
Catalog entry.
Change a price (pre-cutover model)
Catalog entry + its snapshot line (see cost note).
Kill / visibility / routing cell
Catalog entry.
Edit
catalog.py(add a model, change a cell, flip a flag).Open a PR. Catalog-only diffs are reviewed by the
/reviewbot — the integrity tests are the review.Merge. CD propagates the change with the next deploy.
Two lanes:
Ordinary changes (new models, metadata, visibility promotions) target
devand ride the normal release train.Incident-speed changes (kills, routing swaps) may use a
hotfix/*branch targetingmaster— the base-branch check permits this — so the change deploys with CD immediately after merge. Reverting isgit reverton the same lane. Immediately mergemasterback todevafter a catalog hotfix: until the back-merge lands, the next release train would silently revert your change (an emergency kill un-killing itself is the worst version of this).
Two notes. The file is public: a HIDDEN model is hidden from pickers, not from anyone reading this repository — genuinely embargoed models cannot ride this mechanism before announcement. And a catalog-only model (no enum line) simply never surfaces in blocks — it may and should still carry cost: copilot cost estimation uses it today and block billing picks it up automatically if the model later gains an enum line.
How AutoPilot picks a model
Each (mode, tier) cell resolves through three layers, top wins:
LaunchDarkly
copilot-model-routing— per-user JSON flag returning model slugs; used for cohort experiments and rollouts. Optional: when LD is down, resolution falls through and only A/B targeting is lost.Catalog routing cell — the PR-authored default above.
CHAT_*_MODELenvironment variables — the bootstrap floor (see.env.default).
On the managed cloud, the catalog is the serve-time gate for layers 1–2: a slug that is unknown to the catalog or has is_enabled: False is refused — logged every time, reported to Sentry once per slug — and resolution falls through to the next layer. A typo'd LD slug therefore degrades to the default instead of erroring at users. Self-hosted installs and local transports skip the gate entirely (LD → env, their slugs are their own business). Assistant messages served by the baseline path are stamped with the model that served them and which layer picked it (ChatMessage.model / routingSource), which is what allows product-intelligence to compare model quality; the SDK path resolves through the same chain (message stamping covers the baseline path today).
Rolling out a new model
Add the model to the catalog with
visibility="HIDDEN"— registered and routable, invisible in any picker or public listing.Add an LD targeting rule on
copilot-model-routingsending your test cohort (e.g. employees) to its slug.Watch product-intelligence quality scores segmented by the stamped model column.
Graduate: flip
visibilitytoGAand set the routing cell in a catalog PR; delete the LD rule.
Retiring a model
Retirement has two halves:
Stop it serving: a catalog PR setting
is_enabled: False(kill switch — beats LD routing). Two caveats: if the model is also aCHAT_*_MODELenv default, the env floor still serves it (loudly — log + Sentry) until you change that default; and existing agent graphs referencing it keep executing and billing — the kill switch stops NEW serving, step 2 is what stops stored graphs.Migrate existing graph nodes onto a replacement so users' agents keep working:
The replacement must exist in the catalog and be enabled. Every executed retirement writes a revertable LlmModelMigration record; only one active migration per source model is allowed at a time.
Reading the catalog from clients
There is deliberately no public catalog API: the catalog ships inside the repo, so every deployment and self-hosted install already has the exact model list its code supports. When a frontend surface needs the live list (e.g. a catalog-driven model picker), add a small authenticated route that reads the in-process registry (backend.data.llm_registry.registry) — don't reach for an unauthenticated endpoint; the last one existed only to bootstrap DB-seeded installs, a problem the in-repo catalog no longer has.
Last updated
Was this helpful?