Update
Some checks failed
CI / lint-and-test (push) Failing after 1m45s
CI / docker-test (push) Has been skipped
CI / security-scan (push) Has been skipped
Build and Publish Docker Images / build (push) Failing after 1m26s

This commit is contained in:
2025-06-13 12:14:29 +09:00
parent 1edafad270
commit bb4b4e42ef

View File

@ -39,7 +39,7 @@ export async function openAI_ClassifyFeed(title: string): Promise<string> {
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();