Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -139,7 +139,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 139 |
|
| 140 |
if not answer:
|
| 141 |
answer = "I am unable to answer"
|
| 142 |
-
answers_payload.append({"task_id": task_id, "
|
| 143 |
results_log.append({"Task ID": task_id, "Question": question_text, "Answer": answer})
|
| 144 |
except Exception as e:
|
| 145 |
print(f"Error running agent on task {task_id}: {e}")
|
|
|
|
| 139 |
|
| 140 |
if not answer:
|
| 141 |
answer = "I am unable to answer"
|
| 142 |
+
answers_payload.append({"task_id": task_id, "submitted_answer": answer})
|
| 143 |
results_log.append({"Task ID": task_id, "Question": question_text, "Answer": answer})
|
| 144 |
except Exception as e:
|
| 145 |
print(f"Error running agent on task {task_id}: {e}")
|