civerson916 commited on
Commit
819f743
·
verified ·
1 Parent(s): 1c3d27a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -159,7 +159,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
159
  print(f"Running agent on {len(questions_data)} questions...")
160
  for item in questions_data:
161
  task_id = item.get("task_id")
162
- question_text = item.get("question")
163
  if not task_id or question_text is None:
164
  print(f"Skipping item with missing task_id or question: {item}")
165
  continue
 
159
  print(f"Running agent on {len(questions_data)} questions...")
160
  for item in questions_data:
161
  task_id = item.get("task_id")
162
+ question_text = item.get("question") + " think hard to answer."
163
  if not task_id or question_text is None:
164
  print(f"Skipping item with missing task_id or question: {item}")
165
  continue