Commit
·
61e51ef
1
Parent(s):
0ce2853
Remove rate limit.
Browse files
app.py
CHANGED
@@ -181,8 +181,6 @@ async def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
181 |
print(f"Running agent on {len(questions_data)} questions...")
|
182 |
for item in questions_data:
|
183 |
await answer_question(agent, item, answers_payload, results_log)
|
184 |
-
# Desperate attempt to rate limit the LLM calls.
|
185 |
-
await asyncio.sleep(60.0)
|
186 |
|
187 |
if not answers_payload:
|
188 |
print("Agent did not produce any answers to submit.")
|
|
|
181 |
print(f"Running agent on {len(questions_data)} questions...")
|
182 |
for item in questions_data:
|
183 |
await answer_question(agent, item, answers_payload, results_log)
|
|
|
|
|
184 |
|
185 |
if not answers_payload:
|
186 |
print("Agent did not produce any answers to submit.")
|