m-ric HF Staff commited on
Commit
29bd65c
·
1 Parent(s): bbcbb9d

Shorten 'Agent running' message

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -400,7 +400,7 @@ def update_html(interactive_mode: bool, request: gr.Request):
400
 
401
  # Set status indicator class and text
402
  status_class = "status-interactive" if interactive_mode else "status-view-only"
403
- status_text = "Interactive" if interactive_mode else "Agent running: View only"
404
 
405
  creation_time = SANDBOX_METADATA[session_hash]['created_at'] if session_hash in SANDBOX_METADATA else time.time()
406
 
 
400
 
401
  # Set status indicator class and text
402
  status_class = "status-interactive" if interactive_mode else "status-view-only"
403
+ status_text = "Interactive" if interactive_mode else "Agent running..."
404
 
405
  creation_time = SANDBOX_METADATA[session_hash]['created_at'] if session_hash in SANDBOX_METADATA else time.time()
406