Let's try the whole dataset!
Browse files
app.py
CHANGED
|
@@ -264,7 +264,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 264 |
answers_payload = []
|
| 265 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 266 |
|
| 267 |
-
for idx, item in enumerate(questions_data
|
| 268 |
task_id = item.get("task_id")
|
| 269 |
question_text = item.get("question")
|
| 270 |
file_list = item.get("files", [])
|
|
|
|
| 264 |
answers_payload = []
|
| 265 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 266 |
|
| 267 |
+
for idx, item in enumerate(questions_data):
|
| 268 |
task_id = item.get("task_id")
|
| 269 |
question_text = item.get("question")
|
| 270 |
file_list = item.get("files", [])
|