ref:修改默认推荐模型为v3.2和r1

This commit is contained in:
SengokuCola
2025-10-26 23:06:11 +08:00
parent c5b9bc4927
commit 7660be7076
4 changed files with 33 additions and 26 deletions

View File

@@ -1009,6 +1009,9 @@ class DefaultReplyer:
prompt
)
# 移除 content 前后的换行符和空格
content = content.strip()
logger.info(f"使用 {model_name} 生成回复内容: {content}")
return content, reasoning_content, model_name, tool_calls

View File

@@ -930,6 +930,8 @@ class PrivateReplyer:
content, (reasoning_content, model_name, tool_calls) = await self.express_model.generate_response_async(
prompt
)
content = content.strip()
logger.info(f"使用 {model_name} 生成回复内容: {content}")
return content, reasoning_content, model_name, tool_calls