Skip to content

Commit a05d7b1

Browse files
committed
revert(web): drop run build phase hints, keep the dots loader
The preparing / loading_tools / starting text hints (PR #304) read as noise; those phases fall back to the bouncing-dots loader again. Backend keeps emitting the status SSE events — sandbox_creating / sandbox_failed still render, and the events stay available for future UI. i18n keys removed with the last consumer.
1 parent c46a8a1 commit a05d7b1

3 files changed

Lines changed: 3 additions & 17 deletions

File tree

frontend/packages/web/components/chat/AssistantMessage.tsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -739,15 +739,7 @@ export function AssistantMessage({
739739
)}
740740
{isStreaming && (
741741
<div data-testid="loading-indicator" className="flex items-center gap-1 pl-1 h-6">
742-
{statusPhase === 'preparing' || statusPhase === 'loading_tools' ? (
743-
<span className="text-xs text-muted-foreground animate-pulse">
744-
{statusPhase === 'preparing' ? t('runPreparing') : t('runLoadingTools')}
745-
</span>
746-
) : statusPhase === 'starting' ? (
747-
<span className="text-xs text-muted-foreground animate-pulse">
748-
{t('runStarting')}
749-
</span>
750-
) : statusPhase === 'sandbox_creating' ? (
742+
{statusPhase === 'sandbox_creating' ? (
751743
<span className="text-xs text-muted-foreground animate-pulse">
752744
{t('sandboxPreparing')}
753745
</span>

frontend/packages/web/messages/en.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -346,10 +346,7 @@
346346
"openPage": "Open memory",
347347
"openPageAria": "Go to memory page",
348348
"empty": "No memories yet"
349-
},
350-
"runPreparing": "Preparing...",
351-
"runLoadingTools": "Loading tools...",
352-
"runStarting": "Contacting model..."
349+
}
353350
},
354351
"subagent": {
355352
"cluster": "Agent cluster",

frontend/packages/web/messages/zh.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -346,10 +346,7 @@
346346
"openPage": "打开记忆页",
347347
"openPageAria": "跳转到记忆页面",
348348
"empty": "暂无记忆"
349-
},
350-
"runPreparing": "正在准备...",
351-
"runLoadingTools": "正在加载工具...",
352-
"runStarting": "正在请求模型..."
349+
}
353350
},
354351
"subagent": {
355352
"cluster": "Agent 集群",

0 commit comments

Comments
 (0)