From 38951aab56224c0cad0c25950c30701345774ddf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 6 Aug 2025 19:37:29 -0700 Subject: [PATCH] scripts(evals): use RunnerArguments.pipeline_idle_timeout_secs --- scripts/evals/eval.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/evals/eval.py b/scripts/evals/eval.py index 1f6431003..f4518d7ce 100644 --- a/scripts/evals/eval.py +++ b/scripts/evals/eval.py @@ -182,7 +182,10 @@ async def run_example_pipeline(script_path: Path): ), ) - await module.run_bot(transport, RunnerArguments()) + runner_args = RunnerArguments() + runner_args.pipeline_idle_timeout_secs = PIPELINE_IDLE_TIMEOUT_SECS + + await module.run_bot(transport, runner_args) async def run_eval_pipeline(