From 5a5a5fb1b7ffc8619fb5d8b65b34a82d3ac26ddc Mon Sep 17 00:00:00 2001 From: octovimmer Date: Mon, 2 Mar 2026 14:54:46 -0500 Subject: [PATCH 1/2] chore: remove codex models from supported models --- docs/llm-providers/models.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/llm-providers/models.mdx b/docs/llm-providers/models.mdx index 6c26da1ae..45bf8bd81 100644 --- a/docs/llm-providers/models.mdx +++ b/docs/llm-providers/models.mdx @@ -50,10 +50,6 @@ strix --target ./your-app | GPT-5.2 | `strix/gpt-5.2` | | GPT-5.1 | `strix/gpt-5.1` | | GPT-5 | `strix/gpt-5` | -| GPT-5.2 Codex | `strix/gpt-5.2-codex` | -| GPT-5.1 Codex Max | `strix/gpt-5.1-codex-max` | -| GPT-5.1 Codex | `strix/gpt-5.1-codex` | -| GPT-5 Codex | `strix/gpt-5-codex` | ### Google From 3958cf6787b09d23eb3d0981bc130d79871f3698 Mon Sep 17 00:00:00 2001 From: octovimmer Date: Mon, 2 Mar 2026 16:29:16 -0500 Subject: [PATCH 2/2] chore: remove references of codex models --- docs/llm-providers/overview.mdx | 2 +- strix/llm/utils.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/llm-providers/overview.mdx b/docs/llm-providers/overview.mdx index b3df76dc0..153ad0ca8 100644 --- a/docs/llm-providers/overview.mdx +++ b/docs/llm-providers/overview.mdx @@ -49,7 +49,7 @@ See the [Local Models guide](/llm-providers/local) for setup instructions and re Recommended models router with high rate limits. - GPT-5 and Codex models. + GPT-5 models. Claude Opus, Sonnet, and Haiku. diff --git a/strix/llm/utils.py b/strix/llm/utils.py index 8ab169339..cb61a81ed 100644 --- a/strix/llm/utils.py +++ b/strix/llm/utils.py @@ -37,10 +37,6 @@ def normalize_tool_format(content: str) -> str: "gpt-5.2": "openai/gpt-5.2", "gpt-5.1": "openai/gpt-5.1", "gpt-5": "openai/gpt-5", - "gpt-5.2-codex": "openai/gpt-5.2-codex", - "gpt-5.1-codex-max": "openai/gpt-5.1-codex-max", - "gpt-5.1-codex": "openai/gpt-5.1-codex", - "gpt-5-codex": "openai/gpt-5-codex", "gemini-3-pro-preview": "gemini/gemini-3-pro-preview", "gemini-3-flash-preview": "gemini/gemini-3-flash-preview", "glm-5": "openrouter/z-ai/glm-5",