change asethic
Browse files- gradio-web/config.py +3 -3
- gradio-web/ui_layout.py +2 -2
gradio-web/config.py
CHANGED
|
@@ -59,9 +59,9 @@ DEMO_VIDEO_ENV_IDS = [
|
|
| 59 |
|
| 60 |
UI_TEXT = {
|
| 61 |
"log": {
|
| 62 |
-
"action_selection_prompt": "Please select the action in the left 👈,\
|
| 63 |
-
"point_selection_prompt": "Current action needs location input, please click on the image to select
|
| 64 |
-
"demo_video_prompt": 'Press "Watch Video Input🎬" to watch a video\nNote: you can only watch the video once',
|
| 65 |
"session_error": "Session Error",
|
| 66 |
"reference_action_error": "Ground Truth Action Error: {error}",
|
| 67 |
"reference_action_message": "Ground Truth Action: {option_label}. {option_action}",
|
|
|
|
| 59 |
|
| 60 |
UI_TEXT = {
|
| 61 |
"log": {
|
| 62 |
+
"action_selection_prompt": "Please select the action in the left 👈,\nActions with 🎯 need to select a point on the image as input",
|
| 63 |
+
"point_selection_prompt": "Current action needs location input, please click on the image to select key pixel",
|
| 64 |
+
"demo_video_prompt": 'Press "Watch Video Input 🎬" to watch a video\nNote: you can only watch the video once',
|
| 65 |
"session_error": "Session Error",
|
| 66 |
"reference_action_error": "Ground Truth Action Error: {error}",
|
| 67 |
"reference_action_message": "Ground Truth Action: {option_label}. {option_action}",
|
gradio-web/ui_layout.py
CHANGED
|
@@ -574,7 +574,7 @@ def create_ui_blocks():
|
|
| 574 |
with gr.Column(scale=2):
|
| 575 |
header_goal_box = gr.Textbox(
|
| 576 |
value=render_header_goal(""),
|
| 577 |
-
label="Task Goal
|
| 578 |
show_label=True,
|
| 579 |
interactive=False,
|
| 580 |
lines=1,
|
|
@@ -658,7 +658,7 @@ def create_ui_blocks():
|
|
| 658 |
show_label=True,
|
| 659 |
interactive=False,
|
| 660 |
elem_id="log_output",
|
| 661 |
-
label="System Log📝",
|
| 662 |
)
|
| 663 |
|
| 664 |
with gr.Row(elem_id="action_buttons_row"):
|
|
|
|
| 574 |
with gr.Column(scale=2):
|
| 575 |
header_goal_box = gr.Textbox(
|
| 576 |
value=render_header_goal(""),
|
| 577 |
+
label="Task Goal ✅",
|
| 578 |
show_label=True,
|
| 579 |
interactive=False,
|
| 580 |
lines=1,
|
|
|
|
| 658 |
show_label=True,
|
| 659 |
interactive=False,
|
| 660 |
elem_id="log_output",
|
| 661 |
+
label="System Log 📝",
|
| 662 |
)
|
| 663 |
|
| 664 |
with gr.Row(elem_id="action_buttons_row"):
|