mirjam-m commited on
Commit
a1a612c
·
1 Parent(s): 4968835
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -414,7 +414,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
414
  results_log = []
415
  answers_payload = []
416
  print(f"Running agent on {len(questions_data)} questions...")
417
- for item in questions_data[:1]:
418
  task_id = item.get("task_id")
419
  question_text = item.get("question")
420
  if not task_id or question_text is None:
 
414
  results_log = []
415
  answers_payload = []
416
  print(f"Running agent on {len(questions_data)} questions...")
417
+ for item in questions_data:
418
  task_id = item.get("task_id")
419
  question_text = item.get("question")
420
  if not task_id or question_text is None: