Spaces:
Sleeping
Sleeping
messing with print payload
Browse files- simuGAIA.py +4 -3
simuGAIA.py
CHANGED
@@ -288,9 +288,10 @@ def run_simuGAIA_all( profile: gr.OAuthProfile | None, submit: Optional[bool] =
|
|
288 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
289 |
status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}' with url being {agent_code}..."
|
290 |
print(status_update)
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
294 |
|
295 |
|
296 |
|
|
|
288 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
289 |
status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}' with url being {agent_code}..."
|
290 |
print(status_update)
|
291 |
+
print(f"Answers payload content: {answers_payload}")
|
292 |
+
# for answer in answers_payload:
|
293 |
+
# print("task_id: " + answer["Task ID"])
|
294 |
+
# print("answer: " + answer["Submitted Answer"])
|
295 |
|
296 |
|
297 |
|