From 58c41f112acbc16ea97d0237b901804718373b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 5 Aug 2025 16:59:36 -0700 Subject: [PATCH] DailyRunnerArguments: make body optional (fix) --- src/pipecat/runner/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/runner/types.py b/src/pipecat/runner/types.py index 49ee71cf4..39c4b7009 100644 --- a/src/pipecat/runner/types.py +++ b/src/pipecat/runner/types.py @@ -40,7 +40,7 @@ class DailyRunnerArguments(RunnerArguments): room_url: str token: Optional[str] = None - body: Optional[Any] = {} + body: Optional[Any] = field(default_factory=dict) @dataclass