Commit c57963b0 authored by 水玉婷's avatar 水玉婷
Browse files

feat:移除用时

parent 85ded336
......@@ -414,7 +414,9 @@ export class ContentTemplateService {
// 计算思考用时
const thinkingTime = this.thinkingStartTime ? Math.round((Date.now() - this.thinkingStartTime) / 1000) : 0;
const thinkingTimeText = thinkingTime > 0 ? `已完成思考 (用时:${thinkingTime}s)` : '';
// const thinkingTimeText = thinkingTime > 0 ? `已完成思考 (用时:${thinkingTime}s)` : '';
const thinkingTimeText = thinkingTime > 0 ? `已完成思考` : '';
updatedResponse.contentBlocks[updatedBlockIndex].thinkContent = currentThinkContent;
// 添加思考时长信息到内容块中,供前端模板使用
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment