fix: update streaming labels to Connecting/Calling

This commit is contained in:
Jon Saad-Falcon
2026-03-14 12:46:49 -07:00
parent d37b75fbf6
commit 60c0374f9f
+2 -2
View File
@@ -131,7 +131,7 @@ export function InputArea() {
setStreamState({
isStreaming: true,
phase: 'Sending...',
phase: 'Connecting...',
elapsedMs: 0,
activeToolCalls: [],
content: '',
@@ -159,7 +159,7 @@ export function InputArea() {
};
toolCalls.push(tc);
setStreamState({
phase: `Running ${data.tool}...`,
phase: `Calling ${data.tool}...`,
activeToolCalls: [...toolCalls],
});
updateLastAssistant(convId, accumulatedContent, [...toolCalls]);