We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27fc9c8 commit 667cfa3Copy full SHA for 667cfa3
llm_openai.py
@@ -43,6 +43,13 @@ def register_models(register):
43
"codex-mini-latest": {"vision": True, "reasoning": True},
44
# June 10th 2025
45
"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},
53
}
54
for model_id, options in models.items():
55
register(
0 commit comments