From 17948a69f300e4ab2aa8b5e02a3976b98d155b4b Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Thu, 30 Apr 2026 10:14:53 -0600 Subject: [PATCH] fix --- submission/classifier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/submission/classifier.py b/submission/classifier.py index 601d79b..05792d1 100644 --- a/submission/classifier.py +++ b/submission/classifier.py @@ -37,6 +37,7 @@ def _call_llm(content: str) -> int | None: ], max_tokens=10, stream=False, + extra_body={"thinking": {"type": "disabled"}}, ) text = response.choices[0].message.content or "" match = re.search(r"[1-6]", text)