From e2fc8b3dce71bddae7bdb1ca669833f7ad1d6daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 14 Aug 2025 14:55:52 -0700 Subject: [PATCH] Runner: set handle_sigint to True for Daily direct --- src/pipecat/runner/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pipecat/runner/run.py b/src/pipecat/runner/run.py index e08465c0c..a2bcc614f 100644 --- a/src/pipecat/runner/run.py +++ b/src/pipecat/runner/run.py @@ -402,6 +402,7 @@ async def _run_daily_direct(): # Direct connections have no request body, so use empty dict runner_args = DailyRunnerArguments(room_url=room_url, token=token) + runner_args.handle_sigint = True # Get the bot module and run it directly bot_module = _get_bot_module()