Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Shorten 'Agent running' message
Browse files
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
|
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 |
|