We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f6ec5 commit 1e27dd0Copy full SHA for 1e27dd0
1 file changed
libs/naas-abi/naas_abi/apps/nexus/apps/web/src/components/chat/chat-interface.tsx
@@ -1339,7 +1339,7 @@ export function ChatInterface() {
1339
if (!stepName) return;
1340
1341
const label = stepType === 'call_model'
1342
- ? `Calling ${stepName}`
+ ? `Calling model`
1343
: `Routing to ${stepName}`;
1344
1345
const last = streamToolCalls[streamToolCalls.length - 1];
@@ -1377,7 +1377,7 @@ export function ChatInterface() {
1377
if (!rawTool) return false;
1378
const input = getStringValue(payload.input, payload.data) || undefined;
1379
handleToolStartEvent(rawTool, input);
1380
- streamActivityLine = `Tool: ${formatToolName(rawTool)}`;
+ streamActivityLine = `${formatToolName(rawTool)}`;
1381
hasDetailedActivity = true;
1382
return true;
1383
}
0 commit comments