From e00afcb241bd6b35821c900f4f2a7b59c4a4521e Mon Sep 17 00:00:00 2001 From: Ari Webb Date: Tue, 10 Mar 2026 11:12:40 -0700 Subject: [PATCH] fix: add gpt-5.4-fast byok (#1327) --- src/models.json | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/src/models.json b/src/models.json index 1f2cba7..1357a7c 100644 --- a/src/models.json +++ b/src/models.json @@ -331,6 +331,71 @@ "parallel_tool_calls": true } }, + { + "id": "gpt-5.4-fast-plus-pro-none", + "handle": "chatgpt-plus-pro/gpt-5.4-fast", + "label": "GPT-5.4 Fast (ChatGPT)", + "description": "GPT-5.4 Fast (no reasoning) via ChatGPT Plus/Pro", + "updateArgs": { + "reasoning_effort": "none", + "verbosity": "low", + "context_window": 272000, + "max_output_tokens": 128000, + "parallel_tool_calls": true + } + }, + { + "id": "gpt-5.4-fast-plus-pro-low", + "handle": "chatgpt-plus-pro/gpt-5.4-fast", + "label": "GPT-5.4 Fast (ChatGPT)", + "description": "GPT-5.4 Fast (low reasoning) via ChatGPT Plus/Pro", + "updateArgs": { + "reasoning_effort": "low", + "verbosity": "low", + "context_window": 272000, + "max_output_tokens": 128000, + "parallel_tool_calls": true + } + }, + { + "id": "gpt-5.4-fast-plus-pro-medium", + "handle": "chatgpt-plus-pro/gpt-5.4-fast", + "label": "GPT-5.4 Fast (ChatGPT)", + "description": "GPT-5.4 Fast (med reasoning) via ChatGPT Plus/Pro", + "updateArgs": { + "reasoning_effort": "medium", + "verbosity": "low", + "context_window": 272000, + "max_output_tokens": 128000, + "parallel_tool_calls": true + } + }, + { + "id": "gpt-5.4-fast-plus-pro-high", + "handle": "chatgpt-plus-pro/gpt-5.4-fast", + "label": "GPT-5.4 Fast (ChatGPT)", + "description": "GPT-5.4 Fast (high reasoning) via ChatGPT Plus/Pro", + "updateArgs": { + "reasoning_effort": "high", + "verbosity": "low", + "context_window": 272000, + "max_output_tokens": 128000, + "parallel_tool_calls": true + } + }, + { + "id": "gpt-5.4-fast-plus-pro-xhigh", + "handle": "chatgpt-plus-pro/gpt-5.4-fast", + "label": "GPT-5.4 Fast (ChatGPT)", + "description": "GPT-5.4 Fast (max reasoning) via ChatGPT Plus/Pro", + "updateArgs": { + "reasoning_effort": "xhigh", + "verbosity": "low", + "context_window": 272000, + "max_output_tokens": 128000, + "parallel_tool_calls": true + } + }, { "id": "gpt-5.3-codex-plus-pro-none", "handle": "chatgpt-plus-pro/gpt-5.3-codex",