mirjam-m commited on
Commit
7abe77b
·
1 Parent(s): 35ba64c
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -104,7 +104,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
104
  results_log = []
105
  answers_payload = []
106
  print(f"Running agent on {len(questions_data)} questions...")
107
- for item in questions_data[:1]:
108
  task_id = item.get("task_id")
109
  question_text = item.get("question")
110
  if not task_id or question_text is None:
 
104
  results_log = []
105
  answers_payload = []
106
  print(f"Running agent on {len(questions_data)} questions...")
107
+ for item in questions_data:
108
  task_id = item.get("task_id")
109
  question_text = item.get("question")
110
  if not task_id or question_text is None: