Spaces:
Sleeping
Sleeping
change gr.Column to gr.Row
Browse files
app.py
CHANGED
@@ -104,12 +104,12 @@ with gr.Blocks() as demo:
|
|
104 |
gr.Markdown(HEADER)
|
105 |
# gr.Interface(fn=model_call, inputs=inputs, outputs=outputs)
|
106 |
|
107 |
-
with gr.
|
108 |
question = gr.Textbox(label="Question")
|
109 |
document = gr.Textbox(label="Document")
|
110 |
answer = gr.Textbox(label="Answer")
|
111 |
submit_button = gr.Button("Submit")
|
112 |
-
with gr.
|
113 |
reasoning = gr.Textbox(label="Reasoning")
|
114 |
score = gr.Textbox(label="Score")
|
115 |
|
|
|
104 |
gr.Markdown(HEADER)
|
105 |
# gr.Interface(fn=model_call, inputs=inputs, outputs=outputs)
|
106 |
|
107 |
+
with gr.Row(scale=1):
|
108 |
question = gr.Textbox(label="Question")
|
109 |
document = gr.Textbox(label="Document")
|
110 |
answer = gr.Textbox(label="Answer")
|
111 |
submit_button = gr.Button("Submit")
|
112 |
+
with gr.Row(scale=1):
|
113 |
reasoning = gr.Textbox(label="Reasoning")
|
114 |
score = gr.Textbox(label="Score")
|
115 |
|