magdap116 commited on
Commit
5d49f73
·
verified ·
1 Parent(s): 0644a6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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[:1]:
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: