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();