From 5f7dbfe775c970ff3fe8e84b06d0bc1885b828ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 16 Dec 2025 17:26:42 -0800 Subject: [PATCH] scripts(evals): don't use on_idle_timeout --- scripts/evals/eval.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/evals/eval.py b/scripts/evals/eval.py index 6eb8b938c..b535d1e7d 100644 --- a/scripts/evals/eval.py +++ b/scripts/evals/eval.py @@ -358,10 +358,6 @@ async def run_eval_pipeline( logger.info(f"Client disconnected") await task.cancel() - @task.event_handler("on_idle_timeout") - async def on_pipeline_idle_timeout(task): - await eval_runner.assert_eval(False) - @task.event_handler("on_pipeline_finished") async def on_pipeline_finished(task, frame): if isinstance(frame, EndFrame):