bstraehle commited on
Commit
8a64a1b
·
verified ·
1 Parent(s): 99c0f6e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -14
app.py CHANGED
@@ -65,20 +65,22 @@ with gr.Blocks(title="GAIA") as gaia:
65
 
66
  with gr.Row():
67
  with gr.Column():
68
- level = gr.Radio(
69
- choices=[1, 2, 3],
70
- label="Level",
71
- value=int(os.environ.get("INPUT_LEVEL", 1))
72
- )
73
- question = gr.Markdown(
74
- label="Question *",
75
- value=os.environ.get("INPUT_QUESTION", "")
76
- )
77
- file_name = gr.Textbox(label="File Name")
78
- ground_truth = gr.Textbox(
79
- label="Ground Truth",
80
- value=os.environ.get("INPUT_GROUND_TRUTH", "")
81
- )
 
 
82
  with gr.Row():
83
  openai_api_key = gr.Textbox(
84
  label="OpenAI API Key *",
 
65
 
66
  with gr.Row():
67
  with gr.Column():
68
+ with gr.Row():
69
+ level = gr.Radio(
70
+ choices=[1, 2, 3],
71
+ label="Level",
72
+ value=int(os.environ.get("INPUT_LEVEL", 1))
73
+ )
74
+ question = gr.Markdown(
75
+ label="Question *",
76
+ value=os.environ.get("INPUT_QUESTION", "")
77
+ )
78
+ with gr.Row():
79
+ file_name = gr.Textbox(label="File Name")
80
+ ground_truth = gr.Textbox(
81
+ label="Ground Truth",
82
+ value=os.environ.get("INPUT_GROUND_TRUTH", "")
83
+ )
84
  with gr.Row():
85
  openai_api_key = gr.Textbox(
86
  label="OpenAI API Key *",