Update app.py
Browse files
app.py
CHANGED
|
@@ -98,7 +98,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 98 |
answers_payload = []
|
| 99 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 100 |
# added limit for testing
|
| 101 |
-
for item in questions_data
|
| 102 |
task_id = item.get("task_id")
|
| 103 |
question_text = item.get("question")
|
| 104 |
if not task_id or question_text is None:
|
|
|
|
| 98 |
answers_payload = []
|
| 99 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 100 |
# added limit for testing
|
| 101 |
+
for item in questions_data:
|
| 102 |
task_id = item.get("task_id")
|
| 103 |
question_text = item.get("question")
|
| 104 |
if not task_id or question_text is None:
|