Michael Rabinovich commited on
Commit ·
46e3a72
1
Parent(s): 0c44305
app: default the admin validation_method to manual
Browse filesmanual (we re-ran the agent ourselves) is the common case for the
maintainer team, so preselect it on the promote radio.
app.py
CHANGED
|
@@ -558,6 +558,7 @@ to publish the resulting row on the public leaderboard.
|
|
| 558 |
admin_selection_md = gr.Markdown("_No rows selected._")
|
| 559 |
admin_method_radio = gr.Radio(
|
| 560 |
choices=list(VALID_METHODS),
|
|
|
|
| 561 |
label="validation_method (applied to all rows on promote)",
|
| 562 |
interactive=False,
|
| 563 |
)
|
|
|
|
| 558 |
admin_selection_md = gr.Markdown("_No rows selected._")
|
| 559 |
admin_method_radio = gr.Radio(
|
| 560 |
choices=list(VALID_METHODS),
|
| 561 |
+
value="manual",
|
| 562 |
label="validation_method (applied to all rows on promote)",
|
| 563 |
interactive=False,
|
| 564 |
)
|