Update app.py
Browse files
app.py
CHANGED
@@ -164,7 +164,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
164 |
results_log = []
|
165 |
answers_payload = []
|
166 |
print(f"Running agent on {len(questions_data)} questions...")
|
167 |
-
for item in questions_data:
|
168 |
task_id = item.get("task_id")
|
169 |
question_text = item.get("question")
|
170 |
if not task_id or question_text is None:
|
|
|
164 |
results_log = []
|
165 |
answers_payload = []
|
166 |
print(f"Running agent on {len(questions_data)} questions...")
|
167 |
+
for item in questions_data[:1]:
|
168 |
task_id = item.get("task_id")
|
169 |
question_text = item.get("question")
|
170 |
if not task_id or question_text is None:
|