Update app.py
Browse files
app.py
CHANGED
@@ -77,9 +77,9 @@ with gr.Blocks(title="GAIA") as gaia:
|
|
77 |
label="Level",
|
78 |
value=int(os.environ.get("INPUT_LEVEL", 1))
|
79 |
)
|
80 |
-
|
81 |
file_name = gr.Textbox(label="File Name")
|
82 |
-
|
83 |
ground_truth = gr.Textbox(
|
84 |
label="Ground Truth",
|
85 |
value=os.environ.get("INPUT_GROUND_TRUTH", "")
|
|
|
77 |
label="Level",
|
78 |
value=int(os.environ.get("INPUT_LEVEL", 1))
|
79 |
)
|
80 |
+
with gr.Column(scale=2):
|
81 |
file_name = gr.Textbox(label="File Name")
|
82 |
+
with gr.Column(scale=1):
|
83 |
ground_truth = gr.Textbox(
|
84 |
label="Ground Truth",
|
85 |
value=os.environ.get("INPUT_GROUND_TRUTH", "")
|