From 2d9aa92d7e691d93ca0cae12c8edf103b65127f5 Mon Sep 17 00:00:00 2001 From: Nikhil Patel Date: Wed, 1 Jul 2026 15:02:14 +0530 Subject: [PATCH] docs(config-agents): correct built-in alias table for opus and gpt (#96375) The built-in alias shorthands table listed stale model ids that no longer match src/config/defaults.ts (DEFAULT_MODEL_ALIASES): opus: anthropic/claude-opus-4-6 -> anthropic/claude-opus-4-8 gpt: openai/gpt-5.5 -> openai/gpt-5.4 These now match defaults.ts and the help/faq-models alias table, and resolve an internal contradiction on this same page (its runtime-policy example already uses anthropic/claude-opus-4-8). --- docs/gateway/config-agents.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gateway/config-agents.md b/docs/gateway/config-agents.md index 4d793a0359aa..68f3714a3c45 100644 --- a/docs/gateway/config-agents.md +++ b/docs/gateway/config-agents.md @@ -509,9 +509,9 @@ Time format in system prompt. Default: `auto` (OS preference). | Alias | Model | | ------------------- | ------------------------------- | -| `opus` | `anthropic/claude-opus-4-6` | +| `opus` | `anthropic/claude-opus-4-8` | | `sonnet` | `anthropic/claude-sonnet-4-6` | -| `gpt` | `openai/gpt-5.5` | +| `gpt` | `openai/gpt-5.4` | | `gpt-mini` | `openai/gpt-5.4-mini` | | `gpt-nano` | `openai/gpt-5.4-nano` | | `gemini` | `google/gemini-3.1-pro-preview` |