From e89525080cebcb3362d69ef77688d335d68fbf3c Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Sat, 6 Dec 2025 23:16:02 -0800 Subject: [PATCH] feat: Add `gpt-5.1-codex-max` (#162) --- src/models.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/models.json b/src/models.json index 33a6884..512277a 100644 --- a/src/models.json +++ b/src/models.json @@ -139,6 +139,42 @@ "max_output_tokens": 128000 } }, + { + "id": "gpt-5.1-codex-max-medium", + "handle": "openai/gpt-5.1-codex-max", + "label": "GPT-5.1-Codex (max-medium)", + "description": "GPT-5.1-Codex with maximum capabilities enabled", + "updateArgs": { + "reasoning_effort": "medium", + "verbosity": "medium", + "context_window": 272000, + "max_output_tokens": 128000 + } + }, + { + "id": "gpt-5.1-codex-max-high", + "handle": "openai/gpt-5.1-codex-max", + "label": "GPT-5.1-Codex (max-high)", + "description": "GPT-5.1-Codex with maximum capabilities enabled", + "updateArgs": { + "reasoning_effort": "high", + "verbosity": "medium", + "context_window": 272000, + "max_output_tokens": 128000 + } + }, + { + "id": "gpt-5.1-codex-max-x-high", + "handle": "openai/gpt-5.1-codex-max", + "label": "GPT-5.1-Codex (max-x-high)", + "description": "GPT-5.1-Codex with maximum capabilities enabled", + "updateArgs": { + "reasoning_effort": "xhigh", + "verbosity": "medium", + "context_window": 272000, + "max_output_tokens": 128000 + } + }, { "id": "gpt-5-minimal", "handle": "openai/gpt-5",