Skip to content

Commit b875035

Browse files
committed
fix(chat): simplify pending tool activity label
1 parent 4c2d79d commit b875035

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/agent-group/agent-group.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ describe('AgentGroup inline main activity', () => {
341341
act(() => vi.advanceTimersByTime(1000))
342342
return container.textContent
343343
}
344-
expect(render({}, 'executing')).toBe('Preparing tool call…')
344+
expect(render({}, 'executing')).toBe('Working…')
345345
const params = { code: '1', activity: { id: 'check', completedTitle: 'Checked inputs' } }
346346
expect(render(params, 'executing')).toBe('Running checks')
347347
expect(render(params, 'success')).toBe('Ran checks')

apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/agent-group/tool-activity-group.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function ToolActivityGroup({
150150
activity={{
151151
label: working
152152
? getActiveToolActivityTitle(
153-
`${generatingCall ? 'Preparing tool call…' : status.label}${running.length > 1 ? ` + ${running.length - 1}` : ''}`,
153+
`${generatingCall ? 'Working…' : status.label}${running.length > 1 ? ` + ${running.length - 1}` : ''}`,
154154
statusTool,
155155
tools
156156
)

0 commit comments

Comments
 (0)