Update app.py
Browse files
app.py
CHANGED
|
@@ -74,7 +74,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 74 |
answers_payload = []
|
| 75 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 76 |
for item in questions_data:
|
| 77 |
-
print(item.keys)
|
| 78 |
task_id = item.get("task_id")
|
| 79 |
question_text = item.get("question")
|
| 80 |
if not task_id or question_text is None:
|
|
|
|
| 74 |
answers_payload = []
|
| 75 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 76 |
for item in questions_data:
|
| 77 |
+
print(item.keys())
|
| 78 |
task_id = item.get("task_id")
|
| 79 |
question_text = item.get("question")
|
| 80 |
if not task_id or question_text is None:
|