From bb4b4e42efb9b28ea5980846fe1d3f37edba5335 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Fri, 13 Jun 2025 12:14:29 +0900 Subject: [PATCH] Update --- services/llm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/llm.ts b/services/llm.ts index 5e44d95..6a0c3b0 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -39,7 +39,7 @@ export async function openAI_ClassifyFeed(title: string): Promise { const response = await openai.chat.completions.create({ model: config.openai.modelName, messages: [{ role: "user", content: prompt.trim() }], - temperature: 0.3, + temperature: 0.2, }); const category = response.choices[0]?.message?.content?.trim();