scripts(evals): update timeout back to 90 seconds

This commit is contained in:
Aleix Conchillo Flaqué
2025-07-03 11:17:41 -07:00
parent 6c9d058ec2
commit 093285868e

View File

@@ -104,7 +104,7 @@ class EvalRunner:
asyncio.create_task(run_example_pipeline(script_path)), asyncio.create_task(run_example_pipeline(script_path)),
asyncio.create_task(run_eval_pipeline(self, example_file, prompt, eval)), asyncio.create_task(run_eval_pipeline(self, example_file, prompt, eval)),
] ]
_, pending = await asyncio.wait(tasks, timeout=10) _, pending = await asyncio.wait(tasks, timeout=90)
if pending: if pending:
logger.error(f"ERROR: Eval timeout expired, cancelling pending tasks...") logger.error(f"ERROR: Eval timeout expired, cancelling pending tasks...")
for task in pending: for task in pending: