debjitpaul commited on
Commit ·
fdc6572
1
Parent(s): 75b94d3
updated submit form
Browse files
app.py
CHANGED
|
@@ -610,15 +610,15 @@ def build_app() -> gr.Blocks:
|
|
| 610 |
"\n"
|
| 611 |
"```json\n"
|
| 612 |
"[\n"
|
| 613 |
-
" {\"Question Number\": \"
|
| 614 |
-
" {\"Question Number\": \"
|
| 615 |
" ...\n"
|
| 616 |
"]\n"
|
| 617 |
"```\n"
|
| 618 |
"\n"
|
| 619 |
"**Required per entry:**\n"
|
| 620 |
"- `Question Number` — the task ID matching the DEEPSYNTH questions file "
|
| 621 |
-
"(dev
|
| 622 |
"- `answer` — your agent's final structured answer (JSON object / array / number), "
|
| 623 |
"**NOT** the chain-of-thought or tool transcript.\n\n"
|
| 624 |
f"Full spec: [`submission_schema.json`]({REPO_URL}/blob/main/scripts/evaluation/submission_schema.json). "
|
|
@@ -652,7 +652,7 @@ def build_app() -> gr.Blocks:
|
|
| 652 |
with gr.Column():
|
| 653 |
organization_in = gr.Textbox(
|
| 654 |
label="Organization",
|
| 655 |
-
placeholder="e.g.
|
| 656 |
info="Optional. Defaults to 'Anonymous'.",
|
| 657 |
)
|
| 658 |
contact_email_in = gr.Textbox(
|
|
|
|
| 610 |
"\n"
|
| 611 |
"```json\n"
|
| 612 |
"[\n"
|
| 613 |
+
" {\"Question Number\": \"1\", \"answer\": {\"Sweden\": 1.2, \"Finland\": 0.8}},\n"
|
| 614 |
+
" {\"Question Number\": \"2\", \"answer\": {\"Brunei\": -0.67}},\n"
|
| 615 |
" ...\n"
|
| 616 |
"]\n"
|
| 617 |
"```\n"
|
| 618 |
"\n"
|
| 619 |
"**Required per entry:**\n"
|
| 620 |
"- `Question Number` — the task ID matching the DEEPSYNTH questions file "
|
| 621 |
+
"(dev, test).\n"
|
| 622 |
"- `answer` — your agent's final structured answer (JSON object / array / number), "
|
| 623 |
"**NOT** the chain-of-thought or tool transcript.\n\n"
|
| 624 |
f"Full spec: [`submission_schema.json`]({REPO_URL}/blob/main/scripts/evaluation/submission_schema.json). "
|
|
|
|
| 652 |
with gr.Column():
|
| 653 |
organization_in = gr.Textbox(
|
| 654 |
label="Organization",
|
| 655 |
+
placeholder="e.g. DeepSeek, Huawei, Google, MSR",
|
| 656 |
info="Optional. Defaults to 'Anonymous'.",
|
| 657 |
)
|
| 658 |
contact_email_in = gr.Textbox(
|