altozachmo commited on
Commit
fdf3f65
·
1 Parent(s): 0d91eab

increase timeout

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -81,7 +81,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
81
  continue
82
  try:
83
  submitted_answer = agent(prompt)
84
- time.sleep(30) # to avoid rate limiting
85
  answers_payload.append(
86
  {"task_id": task_id, "submitted_answer": submitted_answer}
87
  )
 
81
  continue
82
  try:
83
  submitted_answer = agent(prompt)
84
+ time.sleep(60) # to avoid rate limiting
85
  answers_payload.append(
86
  {"task_id": task_id, "submitted_answer": submitted_answer}
87
  )