Merge pull request #3318 from pipecat-ai/aleix/llm-user-aggregator-allow-interruptions

LLMUserAggregator: also read deprecated allow_interruptions
This commit is contained in:
Aleix Conchillo Flaqué
2025-12-29 18:11:57 -08:00
committed by GitHub

View File

@@ -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)