From e130aada72ed8702da9679255b1f059d394cf033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 22 May 2024 19:41:14 -0700 Subject: [PATCH] filters(WakeCheckFilter): increase timeout to 3 --- src/pipecat/processors/filters/wake_check_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/filters/wake_check_filter.py b/src/pipecat/processors/filters/wake_check_filter.py index 2fe7c127f..44faa03bf 100644 --- a/src/pipecat/processors/filters/wake_check_filter.py +++ b/src/pipecat/processors/filters/wake_check_filter.py @@ -32,7 +32,7 @@ class WakeCheckFilter(FrameProcessor): self.wake_timer = 0.0 self.accumulator = "" - def __init__(self, wake_phrases: list[str], keepalive_timeout: float = 2): + def __init__(self, wake_phrases: list[str], keepalive_timeout: float = 3): super().__init__() self._participant_states = {} self._keepalive_timeout = keepalive_timeout