Spaces:
Paused
Paused
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -1227,7 +1227,7 @@ with gr.Blocks(title="UX Analysis Orchestrator") as demo:
|
|
| 1227 |
with gr.Row():
|
| 1228 |
sl_refresh_branches_btn = gr.Button("Pull latest results")
|
| 1229 |
|
| 1230 |
-
sl_terminal_log = gr.Code(label="Connection Log", language="
|
| 1231 |
|
| 1232 |
with gr.Row():
|
| 1233 |
sl_status_display = gr.Markdown("Click 'Pull latest results' to discover slides.")
|
|
@@ -1317,7 +1317,7 @@ with gr.Blocks(title="UX Analysis Orchestrator") as demo:
|
|
| 1317 |
with gr.Row():
|
| 1318 |
rv_refresh_branches_btn = gr.Button("Pull latest results")
|
| 1319 |
|
| 1320 |
-
rv_terminal_log = gr.Code(label="Connection Log", language="
|
| 1321 |
|
| 1322 |
with gr.Row():
|
| 1323 |
rv_report_select = gr.Dropdown(label="Select Report", choices=[], allow_custom_value=True)
|
|
@@ -1374,7 +1374,7 @@ with gr.Blocks(title="UX Analysis Orchestrator") as demo:
|
|
| 1374 |
with gr.Row():
|
| 1375 |
tl_refresh_btn = gr.Button("Pull latest results")
|
| 1376 |
|
| 1377 |
-
tl_terminal_log = gr.Code(label="Connection Log", language="
|
| 1378 |
|
| 1379 |
with gr.Row():
|
| 1380 |
tl_log_select = gr.Dropdown(label="Select Thought Log", choices=[])
|
|
|
|
| 1227 |
with gr.Row():
|
| 1228 |
sl_refresh_branches_btn = gr.Button("Pull latest results")
|
| 1229 |
|
| 1230 |
+
sl_terminal_log = gr.Code(label="Connection Log", language="shell", value=f"[SYSTEM] Connected to {REPO_NAME}\n[SYSTEM] Ready to pull results.")
|
| 1231 |
|
| 1232 |
with gr.Row():
|
| 1233 |
sl_status_display = gr.Markdown("Click 'Pull latest results' to discover slides.")
|
|
|
|
| 1317 |
with gr.Row():
|
| 1318 |
rv_refresh_branches_btn = gr.Button("Pull latest results")
|
| 1319 |
|
| 1320 |
+
rv_terminal_log = gr.Code(label="Connection Log", language="shell", value=f"[SYSTEM] Connected to {REPO_NAME}\n[SYSTEM] Ready to pull results.")
|
| 1321 |
|
| 1322 |
with gr.Row():
|
| 1323 |
rv_report_select = gr.Dropdown(label="Select Report", choices=[], allow_custom_value=True)
|
|
|
|
| 1374 |
with gr.Row():
|
| 1375 |
tl_refresh_btn = gr.Button("Pull latest results")
|
| 1376 |
|
| 1377 |
+
tl_terminal_log = gr.Code(label="Connection Log", language="shell", value=f"[SYSTEM] Connected to {REPO_NAME}\n[SYSTEM] Ready to pull results.")
|
| 1378 |
|
| 1379 |
with gr.Row():
|
| 1380 |
tl_log_select = gr.Dropdown(label="Select Thought Log", choices=[])
|