From c565d915911d75ea0f307f675598022e14ef986f Mon Sep 17 00:00:00 2001 From: suyao Date: Sun, 11 May 2025 03:52:26 +0800 Subject: [PATCH] fix: remove 'auto' option from qwen model supported options --- src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx b/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx index 702c1d2823..2caef6c158 100644 --- a/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx +++ b/src/renderer/src/pages/home/Inputbar/ThinkingButton.tsx @@ -35,7 +35,7 @@ const MODEL_SUPPORTED_OPTIONS: Record = { default: ['off', 'low', 'medium', 'high'], grok: ['off', 'low', 'high'], gemini: ['off', 'low', 'medium', 'high', 'auto'], - qwen: ['off', 'low', 'medium', 'high', 'auto'] + qwen: ['off', 'low', 'medium', 'high'] } // 选项转换映射表:当选项不支持时使用的替代选项