From b48d164af8bff17d0f3cd885f4e391174f11580b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Sun, 28 Dec 2025 12:45:58 -0800 Subject: [PATCH] turns: add external user and bot turn start strategies External strategies are strategies where the logic for user turn start and turn end come from a different processors (e.g. an STT). --- src/pipecat/turns/bot/external_bot_turn_start_strategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/turns/bot/external_bot_turn_start_strategy.py b/src/pipecat/turns/bot/external_bot_turn_start_strategy.py index 330863cef..730dbf3c5 100644 --- a/src/pipecat/turns/bot/external_bot_turn_start_strategy.py +++ b/src/pipecat/turns/bot/external_bot_turn_start_strategy.py @@ -29,7 +29,7 @@ class ExternalBotTurnStartStrategy(BaseBotTurnStartStrategy): """ - def __init__(self, *, timeout: float = 0.5): + def __init__(self, *, timeout: float = 0.2): """Initialize the transcription-based bot turn start strategy. Args: