Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
|
|
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)
|