关闭思考,温度0.1

This commit is contained in:
2026-07-29 08:10:09 +08:00
parent 467d879dc3
commit c90718c6de
3 changed files with 4 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ async function analyzeWithDeepSeek(text, historyMessages, username, isAdmin, roo
...historyMessages.slice(-30),
{ role: 'user', content: `${username}: ${text}` }
];
const content = await callDeepSeek(messages, 0.1, username);
const content = await callDeepSeek(messages, username);
console.log('🤖 AI 返回:', content);
try {
const parsed = JSON.parse(content.replace(/```json|```/g, '').trim());