From 0a0ab51cc77cabbeb223318b0891d873f8f6b3ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 29 Dec 2025 17:57:18 -0800 Subject: [PATCH] LLMUserAggregator: also read deprecated allow_interruptions --- src/pipecat/processors/aggregators/llm_response_universal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/aggregators/llm_response_universal.py b/src/pipecat/processors/aggregators/llm_response_universal.py index 0bf41b8c7..65b57b782 100644 --- a/src/pipecat/processors/aggregators/llm_response_universal.py +++ b/src/pipecat/processors/aggregators/llm_response_universal.py @@ -564,7 +564,7 @@ class LLMUserAggregator(LLMContextAggregator): # TODO(aleix): This frame should really come from the top of the pipeline. await self.broadcast_frame(UserStartedSpeakingFrame) - if params.enable_interruptions: + if params.enable_interruptions and self._allow_interruptions: # TODO(aleix): This frame should really come from the top of the pipeline. await self.broadcast_frame(InterruptionFrame)