From 6049a05776c8e6117a0ab30d994bff5b9157d11f Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Fri, 13 Jun 2025 13:04:20 +0900 Subject: [PATCH] Fix --- services/llm.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/llm.ts b/services/llm.ts index 6a0c3b0..643d25c 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -40,6 +40,7 @@ export async function openAI_ClassifyFeed(title: string): Promise { model: config.openai.modelName, messages: [{ role: "user", content: prompt.trim() }], temperature: 0.2, + reasoning_effort: "low", }); const category = response.choices[0]?.message?.content?.trim(); @@ -220,6 +221,7 @@ ${textForClassification} model: config.openai.modelName, messages: [{ role: "user", content: prompt.trim() }], temperature: 0.2, + reasoning_effort: "low", }); const category = response.choices[0]?.message?.content?.trim();