Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions llm_openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ def register_models(register):
# GPT-5 Pro, 6th October 2025
"gpt-5-pro": {"vision": True, "reasoning": True},
"gpt-5-pro-2025-10-06": {"vision": True, "reasoning": True},
# GPT-5.1, November 2025
"gpt-5.1": {"vision": True, "reasoning": True},
"gpt-5.1-chat-latest": {"vision": True, "reasoning": True},
"gpt-5.1-codex": {"vision": True, "reasoning": True},
"gpt-5.1-codex-mini": {"vision": True, "reasoning": True},
}
for model_id, options in models.items():
register(
Expand Down