Update Pipecat Cloud example to use handle_sigint=False in PipelineRunner args

This commit is contained in:
Mark Backman
2025-07-22 09:52:57 -04:00
parent fad2ba4570
commit 8ee608bbfe

View File

@@ -90,7 +90,7 @@ async def main(transport: DailyTransport):
logger.info("Participant left: {}", participant)
await task.cancel()
runner = PipelineRunner()
runner = PipelineRunner(handle_sigint=False, force_gc=True)
await runner.run(task)