innafomina commited on
Commit
0d30fcd
·
verified ·
1 Parent(s): 3950add

Update app.py

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