diff --git a/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx b/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx index ec2ab047a..d5e904f51 100644 --- a/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx +++ b/apps/ai-game-creator-shell/src/features/project-workspace/ToolCallGroup.tsx @@ -113,6 +113,7 @@ export function ToolCallGroup({ : 'agent-tool-call-group' } data-testid="agent-tool-call-group" + aria-label="陶泥儿执行过程" data-status={status} data-duration-ms={totalDurationMs ?? ''} > diff --git a/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts b/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts index 8dfa433df..a48a125bd 100644 --- a/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts +++ b/apps/ai-game-creator-shell/src/features/project-workspace/toolCallGroupPresentation.ts @@ -71,7 +71,7 @@ export function toolCallGroupSummary( } return parts.length > 0 ? running - ? parts.join('、') + ? `已执行 ${parts.join('、')}进行中` : `已执行 ${parts.join('、')}` : ''; }