Commit
·
9d812dd
1
Parent(s):
e23031a
fix: increased sleep
Browse files
app.py
CHANGED
@@ -176,7 +176,7 @@ async def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
176 |
answers_payload = []
|
177 |
print(f"Running agent on {len(questions_data)} questions...")
|
178 |
for item in questions_data:
|
179 |
-
await asyncio.sleep(
|
180 |
task_id = item.get("task_id")
|
181 |
question_text = item.get("question")
|
182 |
if not task_id or question_text is None:
|
|
|
176 |
answers_payload = []
|
177 |
print(f"Running agent on {len(questions_data)} questions...")
|
178 |
for item in questions_data:
|
179 |
+
await asyncio.sleep(30)
|
180 |
task_id = item.get("task_id")
|
181 |
question_text = item.get("question")
|
182 |
if not task_id or question_text is None:
|