bstraehle commited on
Commit
a5b24c7
·
verified ·
1 Parent(s): 221fc7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -13
app.py CHANGED
@@ -71,19 +71,21 @@ with gr.Blocks(title="GAIA") as gaia:
71
  value=os.environ.get("INPUT_QUESTION", "")
72
  )
73
  with gr.Row():
74
- with gr.Column(scale=1):
75
- level = gr.Radio(
76
- choices=[1, 2, 3],
77
- label="Level",
78
- value=int(os.environ.get("INPUT_LEVEL", 1))
79
- )
80
- with gr.Column(scale=1):
81
- ground_truth = gr.Textbox(
82
- label="Ground Truth",
83
- value=os.environ.get("INPUT_GROUND_TRUTH", "")
84
- )
85
- with gr.Column(scale=2):
86
- file_name = gr.Textbox(label="File Name")
 
 
87
  with gr.Row():
88
  openai_api_key = gr.Textbox(
89
  label="OpenAI API Key *",
 
71
  value=os.environ.get("INPUT_QUESTION", "")
72
  )
73
  with gr.Row():
74
+ level = gr.Radio(
75
+ choices=[1, 2, 3],
76
+ label="Level",
77
+ value=int(os.environ.get("INPUT_LEVEL", 1)),
78
+ scale=1
79
+ )
80
+ ground_truth = gr.Textbox(
81
+ label="Ground Truth",
82
+ value=os.environ.get("INPUT_GROUND_TRUTH", ""),
83
+ scale=1
84
+ )
85
+ file_name = gr.Textbox(
86
+ label="File Name",
87
+ scale=2
88
+ )
89
  with gr.Row():
90
  openai_api_key = gr.Textbox(
91
  label="OpenAI API Key *",