SergeyO7 commited on
Commit
dfa8037
·
verified ·
1 Parent(s): 39c4dad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -153,7 +153,8 @@ async def run_and_submit_all(profile: gr.OAuthProfile | None):
153
 
154
  for item in questions_data:
155
  if item.get("task_id") and item.get("question"):
156
- result = await process_question(agent, item["question"], item["task_id"], results_log)
 
157
  if result:
158
  answers_payload.append(result)
159
  await asyncio.sleep(30)
 
153
 
154
  for item in questions_data:
155
  if item.get("task_id") and item.get("question"):
156
+ if "chess" in item["question"]:
157
+ result = await process_question(agent, item["question"], item["task_id"], results_log)
158
  if result:
159
  answers_payload.append(result)
160
  await asyncio.sleep(30)