LLMUserAggregator: also read deprecated allow_interruptions

This commit is contained in:
Aleix Conchillo Flaqué
2025-12-29 17:57:18 -08:00
parent 8339c2c2c7
commit 0a0ab51cc7

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)