From f14cbae9b5d1c2192c80f2e75b679b5633094e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 5 Aug 2025 15:46:12 -0700 Subject: [PATCH] DailyRunnerArguments: make token optional DailyTransport can get a None token value. --- src/pipecat/runner/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/runner/types.py b/src/pipecat/runner/types.py index 33bf3b160..95048817e 100644 --- a/src/pipecat/runner/types.py +++ b/src/pipecat/runner/types.py @@ -11,7 +11,7 @@ information to bot functions. """ from dataclasses import dataclass, field -from typing import Any +from typing import Any, Optional from fastapi import WebSocket @@ -39,7 +39,7 @@ class DailyRunnerArguments(RunnerArguments): """ room_url: str - token: str + token: Optional[str] body: Any