Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ async def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
156 |
if item.get("task_id") and item.get("question"):
|
157 |
# # Only process chess-related questions
|
158 |
if "Vietnamese" in item["question"].lower():
|
159 |
-
|
160 |
else:
|
161 |
print(f"Skipping not related question: {item['task_id']}")
|
162 |
results_log.append({
|
|
|
156 |
if item.get("task_id") and item.get("question"):
|
157 |
# # Only process chess-related questions
|
158 |
if "Vietnamese" in item["question"].lower():
|
159 |
+
result = await process_question(agent, item["question"], item["task_id"], results_log)
|
160 |
else:
|
161 |
print(f"Skipping not related question: {item['task_id']}")
|
162 |
results_log.append({
|