Skip to content

Commit 667cfa3

Browse files
committed
GPT-5 model IDs, refs #24
1 parent 27fc9c8 commit 667cfa3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

llm_openai.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ def register_models(register):
4343
"codex-mini-latest": {"vision": True, "reasoning": True},
4444
# June 10th 2025
4545
"o3-pro": {"vision": True, "reasoning": True},
46+
# GPT-5, August 7th 2025
47+
"gpt-5": {"vision": True, "reasoning": True},
48+
"gpt-5-mini": {"vision": True, "reasoning": True},
49+
"gpt-5-nano": {"vision": True, "reasoning": True},
50+
"gpt-5-2025-08-07": {"vision": True, "reasoning": True},
51+
"gpt-5-mini-2025-08-07": {"vision": True, "reasoning": True},
52+
"gpt-5-nano-2025-08-07": {"vision": True, "reasoning": True},
4653
}
4754
for model_id, options in models.items():
4855
register(

0 commit comments

Comments
 (0)