From 638920dc950ad672fff43bc6bfa8ae1989808386 Mon Sep 17 00:00:00 2001 From: Tomortec Date: Thu, 26 Jun 2025 00:13:36 +0800 Subject: [PATCH] feat: support qwen-long model --- cli/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/utils.py b/cli/utils.py index 43c976fa..0e786ad4 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -139,6 +139,7 @@ def select_shallow_thinking_agent(provider) -> str: ("Qwen-Turbo - Fast speed and low cost, suitable for simple tasks", "qwen-turbo"), ("Qwen-Plus - Balanced combination of performance and speed, ideal for moderately complex tasks", "qwen-plus"), ("Qwen-Max - For complex and multi-step tasks", "qwen-max"), + ("Qwen-Long - For long context tasks", "qwen-long") ], "anthropic": [ ("Claude Haiku 3.5 - Fast inference and standard capabilities", "claude-3-5-haiku-latest"), @@ -205,6 +206,7 @@ def select_deep_thinking_agent(provider) -> str: ("Qwen-Turbo - Fast speed and low cost, suitable for simple tasks", "qwen-turbo"), ("Qwen-Plus - Balanced combination of performance and speed, ideal for moderately complex tasks", "qwen-plus"), ("Qwen-Max - For complex and multi-step tasks", "qwen-max"), + ("Qwen-Long - For long context tasks", "qwen-long"), ], "anthropic": [ ("Claude Haiku 3.5 - Fast inference and standard capabilities", "claude-3-5-haiku-latest"),