From e735d6cde8bc3d4f3080f80ba23e1aa9fce5ca35 Mon Sep 17 00:00:00 2001 From: Mark Thien Date: Tue, 23 Sep 2025 16:50:05 +0800 Subject: [PATCH] feature | add gpt-5 option --- cli/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/utils.py b/cli/utils.py index 7b9682a6..e6608505 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -132,6 +132,7 @@ def select_shallow_thinking_agent(provider) -> str: ("GPT-4.1-nano - Ultra-lightweight model for basic operations", "gpt-4.1-nano"), ("GPT-4.1-mini - Compact model with good performance", "gpt-4.1-mini"), ("GPT-4o - Standard model with solid capabilities", "gpt-4o"), + ("GPT-5 - Latest flagship model with advanced reasoning and performance", "gpt-5"), ], "anthropic": [ ("Claude Haiku 3.5 - Fast inference and standard capabilities", "claude-3-5-haiku-latest"), @@ -193,6 +194,7 @@ def select_deep_thinking_agent(provider) -> str: ("o3-mini - Advanced reasoning model (lightweight)", "o3-mini"), ("o3 - Full advanced reasoning model", "o3"), ("o1 - Premier reasoning and problem-solving model", "o1"), + ("GPT-5 - Latest flagship model with advanced reasoning and performance", "gpt-5"), ], "anthropic": [ ("Claude Haiku 3.5 - Fast inference and standard capabilities", "claude-3-5-haiku-latest"),