diff --git a/src/models.json b/src/models.json index fe1e461..98e13f5 100644 --- a/src/models.json +++ b/src/models.json @@ -42,6 +42,83 @@ "context_window": 272000 } }, + { + "id": "gpt-5.1-none", + "handle": "openai/gpt-5.1", + "label": "GPT-5.1 (none)", + "description": "OpenAI's latest model (no reasoning, fastest GPT-5.1 option)", + "updateArgs": { + "reasoning_effort": "none", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-low", + "handle": "openai/gpt-5.1", + "label": "GPT-5.1 (low)", + "description": "OpenAI's latest model (some reasoning enabled)", + "updateArgs": { + "reasoning_effort": "low", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-medium", + "handle": "openai/gpt-5.1", + "label": "GPT-5.1 (medium)", + "description": "OpenAI's latest model (using their recommended reasoning level)", + "updateArgs": { + "reasoning_effort": "medium", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-high", + "handle": "openai/gpt-5.1", + "label": "GPT-5.1 (high)", + "description": "OpenAI's latest model (maximum reasoning depth)", + "updateArgs": { + "reasoning_effort": "high", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-codex-none", + "handle": "openai/gpt-5.1-codex", + "label": "GPT-5.1-Codex (none)", + "description": "GPT-5.1-Codex with no reasoning (fastest Codex option)", + "updateArgs": { + "reasoning_effort": "none", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-codex-medium", + "handle": "openai/gpt-5.1-codex", + "label": "GPT-5.1-Codex (medium)", + "description": "GPT-5.1-Codex with recommended reasoning level", + "updateArgs": { + "reasoning_effort": "medium", + "verbosity": "medium", + "context_window": 272000 + } + }, + { + "id": "gpt-5.1-codex-high", + "handle": "openai/gpt-5.1-codex", + "label": "GPT-5.1-Codex (high)", + "description": "GPT-5.1-Codex with maximum reasoning depth", + "updateArgs": { + "reasoning_effort": "high", + "verbosity": "medium", + "context_window": 272000 + } + }, { "id": "gpt-5-minimal", "handle": "openai/gpt-5",