Spaces:
Running
Running
Add new heading content (#46)
Browse files- submission.py +12 -1
submission.py
CHANGED
|
@@ -305,9 +305,20 @@ agent_tooling_label_html = """
|
|
| 305 |
</div>
|
| 306 |
"""
|
| 307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
# --- Submission Accordion ---
|
| 309 |
def build_page():
|
| 310 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 311 |
with gr.Row():
|
| 312 |
with gr.Column():
|
| 313 |
level_of_test_radio = gr.Radio(["validation", "test"], value="validation", label="Split")
|
|
|
|
| 305 |
</div>
|
| 306 |
"""
|
| 307 |
|
| 308 |
+
heading_html = """
|
| 309 |
+
<h2>🚀 Submit an agent for evaluation</h2>
|
| 310 |
+
<p>Submit your agent to AstaBench for evaluation on real-world scientific tasks. Once submitted, your run will be reviewed by our team. If there are any issues, we’ll reach out within 5–7 business days. We’re working toward full automation, but in the meantime, human review helps ensure quality and trust.</p>
|
| 311 |
+
<h3>How to run an evaluation</h3>
|
| 312 |
+
<p>Please follow the steps in our <a href="https://github.com/allenai/asta-bench" target="_blank">README</a>. You’ll upload your run file at the end of this form.</p>
|
| 313 |
+
"""
|
| 314 |
+
|
| 315 |
# --- Submission Accordion ---
|
| 316 |
def build_page():
|
| 317 |
+
with gr.Row():
|
| 318 |
+
with gr.Column():
|
| 319 |
+
gr.HTML(heading_html)
|
| 320 |
+
with gr.Column():
|
| 321 |
+
pass # Keeps this row's content on the left side of the page.
|
| 322 |
with gr.Row():
|
| 323 |
with gr.Column():
|
| 324 |
level_of_test_radio = gr.Radio(["validation", "test"], value="validation", label="Split")
|