Fix
Some checks failed
CI / security-scan (push) Has been skipped
Build and Publish Docker Images / build (push) Failing after 58s
CI / lint-and-test (push) Failing after 10m46s
CI / docker-test (push) Has been cancelled

This commit is contained in:
2025-06-13 13:04:20 +09:00
parent bb4b4e42ef
commit 6049a05776

View File

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