From 2724ef6d6fdeca8692a407e18d167997c7eba49e Mon Sep 17 00:00:00 2001 From: OmercohenAviv Date: Sat, 28 Mar 2026 12:12:02 +0300 Subject: [PATCH] non optional --- src/pipecat/pipeline/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/pipeline/task.py b/src/pipecat/pipeline/task.py index df9d5dbe9..5f19cf86f 100644 --- a/src/pipecat/pipeline/task.py +++ b/src/pipecat/pipeline/task.py @@ -149,7 +149,7 @@ class PipelineParams(BaseModel): enable_metrics: bool = False enable_usage_metrics: bool = False heartbeats_period_secs: float = HEARTBEAT_SECS - heartbeats_monitor_secs: Optional[float] = HEARTBEAT_MONITOR_SECS + heartbeats_monitor_secs: float = HEARTBEAT_MONITOR_SECS interruption_strategies: List[BaseInterruptionStrategy] = Field(default_factory=list) observers: List[BaseObserver] = Field(default_factory=list) report_only_initial_ttfb: bool = False