Fix
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user