Skip to content

Commit 5a93200

Browse files
echobtfactorydroid
andauthored
fix(tui): change 'Starting...' to 'Processing request...' for subagent status (#291)
Co-authored-by: Droid Agent <droid@factory.ai>
1 parent d6578f3 commit 5a93200

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cortex-tui/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ impl SubagentDisplayStatus {
322322
/// Get a short description of the status.
323323
pub fn description(&self) -> String {
324324
match self {
325-
Self::Starting => "Starting...".to_string(),
325+
Self::Starting => "Processing request...".to_string(),
326326
Self::Thinking => "Thinking...".to_string(),
327327
Self::ExecutingTool(name) => format!("Running {}", name),
328328
Self::Completed => "Completed".to_string(),

0 commit comments

Comments
 (0)