feat(ui): display agent name in message header

This commit is contained in:
2025-12-16 10:43:02 +08:00
parent a6c1e792fa
commit e698ec2a64
6 changed files with 72 additions and 6 deletions
+2
View File
@@ -95,6 +95,8 @@ export interface Message {
model?: string;
stepCount?: number;
totalTokens?: number;
/** 生成此消息的 Agent 名称 */
agentName?: string;
};
}