Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -67,7 +67,8 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 67 |
results_log = []
|
| 68 |
answers_payload = []
|
| 69 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 70 |
-
|
|
|
|
| 71 |
task_id = item.get("task_id")
|
| 72 |
question_text = item.get("question")
|
| 73 |
# add fetching the link associated with the question
|
|
|
|
| 67 |
results_log = []
|
| 68 |
answers_payload = []
|
| 69 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 70 |
+
# SELECT 1 QUESTION FOR DEBUG
|
| 71 |
+
for item in [questions_data[3]]:
|
| 72 |
task_id = item.get("task_id")
|
| 73 |
question_text = item.get("question")
|
| 74 |
# add fetching the link associated with the question
|