From 63f75de89d98e39ff454424e1d943f41706e34d6 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Fri, 3 Apr 2026 13:38:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Qwen3.5=20thinking=20=EB=AA=A8=EB=93=9C?= =?UTF-8?q?=20=EB=B9=84=ED=99=9C=EC=84=B1=ED=99=94=20(enable=5Fthinking:?= =?UTF-8?q?=20false)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JSON 응답에 Thinking Process 텍스트가 섞이는 문제 해결. Co-Authored-By: Claude Opus 4.6 (1M context) --- app/ai/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/ai/client.py b/app/ai/client.py index a370bf6..d1ad612 100644 --- a/app/ai/client.py +++ b/app/ai/client.py @@ -125,6 +125,7 @@ class AIClient: "model": model_config.model, "messages": [{"role": "user", "content": prompt}], "max_tokens": model_config.max_tokens, + "chat_template_kwargs": {"enable_thinking": False}, }, timeout=model_config.timeout, )