LLMUserContextAggregator: increase bot_interruption_timeout to 5 seconds

This commit is contained in:
Aleix Conchillo Flaqué
2025-03-20 00:31:54 -07:00
parent 7cdcd1c3d1
commit 2417ec4f92

View File

@@ -275,7 +275,7 @@ class LLMUserContextAggregator(LLMContextResponseAggregator):
self,
context: OpenAILLMContext,
aggregation_timeout: float = 1.0,
bot_interruption_timeout: float = 2.0,
bot_interruption_timeout: float = 5.0,
**kwargs,
):
super().__init__(context=context, role="user", **kwargs)