Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
156 |
results_log = []
|
157 |
answers_payload = []
|
158 |
print(f"Running agent on {len(questions_data)} questions...")
|
159 |
-
for item in questions_data
|
160 |
task_id = item.get("task_id")
|
161 |
question_text = item.get("question")
|
162 |
if not task_id or question_text is None:
|
|
|
156 |
results_log = []
|
157 |
answers_payload = []
|
158 |
print(f"Running agent on {len(questions_data)} questions...")
|
159 |
+
for item in questions_data:
|
160 |
task_id = item.get("task_id")
|
161 |
question_text = item.get("question")
|
162 |
if not task_id or question_text is None:
|