feat: 工具卡片精简、移除token统计、消息时间显示

1. 聊天消息工具卡片只显示工具名+调用内容,不显示执行结果(工作空间工具页签已有完整结果)
2. 移除所有token统计相关代码:顶栏统计、消息内token/耗时显示、历史记录中的token显示
3. 每条消息显示具体时间(年月日 时分秒),formatTime 已含秒数
This commit is contained in:
thzxx
2026-04-23 15:42:15 +08:00
parent 7ed75415a3
commit 684b2f773b
7 changed files with 6 additions and 166 deletions
+1 -2
View File
@@ -4,7 +4,7 @@
import { state, KEYS } from '../state/state.js';
import { debounce, escapeHtml, formatTime } from '../utils/utils.js';
import { exportAsMarkdown, exportAsHtml, exportAsTxt, renderMessages, clearMessages, updateTotalTokens } from './chat-area.js';
import { exportAsMarkdown, exportAsHtml, exportAsTxt, renderMessages, clearMessages } from './chat-area.js';
import { clearToolCardsExternal, clearTerminalExternal } from './workspace-panel.js';
import { showConfirm } from './prompt-modal.js';
import { ChatDB } from '../db/chat-db.js';
@@ -186,7 +186,6 @@ async function loadHistorySession(sessionId: string): Promise<void> {
clearMessages();
renderMessages();
updateTotalTokens();
closeHistoryModal();
}