scripts(evals): use RunnerArguments.pipeline_idle_timeout_secs

This commit is contained in:
Aleix Conchillo Flaqué
2025-08-06 19:37:29 -07:00
parent ed8b0655a8
commit 38951aab56

View File

@@ -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(