Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -146,7 +146,7 @@ with gr.Blocks() as demo:
|
|
146 |
gr.LoginButton()
|
147 |
run_button = gr.Button("Run Evaluation & Submit All Answers", variant="primary")
|
148 |
status_output = gr.Textbox(label="Run Status / Submission Result", lines=4, interactive=False)
|
149 |
-
results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True,
|
150 |
run_button.click(fn=run_and_submit_all, outputs=[status_output, results_table])
|
151 |
|
152 |
if __name__ == "__main__":
|
|
|
146 |
gr.LoginButton()
|
147 |
run_button = gr.Button("Run Evaluation & Submit All Answers", variant="primary")
|
148 |
status_output = gr.Textbox(label="Run Status / Submission Result", lines=4, interactive=False)
|
149 |
+
results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True, row_count=10)
|
150 |
run_button.click(fn=run_and_submit_all, outputs=[status_output, results_table])
|
151 |
|
152 |
if __name__ == "__main__":
|