Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
6c3c556
1
Parent(s):
4e44ee3
improve submit placement
Browse files
app.py
CHANGED
@@ -461,11 +461,10 @@ with blocks:
|
|
461 |
org_textbox = gr.Textbox(label=AutoEvalColumn.organization.name)
|
462 |
submission_file = gr.File(label="JSONL solutions file", file_types=[".jsonl"])
|
463 |
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
submission_result = gr.Markdown()
|
469 |
|
470 |
submit_button.click(
|
471 |
add_solution_cbk,
|
|
|
461 |
org_textbox = gr.Textbox(label=AutoEvalColumn.organization.name)
|
462 |
submission_file = gr.File(label="JSONL solutions file", file_types=[".jsonl"])
|
463 |
|
464 |
+
logger.info("Submit button")
|
465 |
+
gr.Markdown(SUBMISSION_TERMS_TEXT, elem_classes="markdown-text")
|
466 |
+
submit_button = gr.Button("Submit", variant="primary")
|
467 |
+
submission_result = gr.Markdown()
|
|
|
468 |
|
469 |
submit_button.click(
|
470 |
add_solution_cbk,
|