Skip to content

Commit 0054876

Browse files
authored
Merge pull request pipecat-ai#3318 from pipecat-ai/aleix/llm-user-aggregator-allow-interruptions
LLMUserAggregator: also read deprecated allow_interruptions
2 parents 8339c2c + 0a0ab51 commit 0054876

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pipecat/processors/aggregators/llm_response_universal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ async def _trigger_user_turn_start(
564564
# TODO(aleix): This frame should really come from the top of the pipeline.
565565
await self.broadcast_frame(UserStartedSpeakingFrame)
566566

567-
if params.enable_interruptions:
567+
if params.enable_interruptions and self._allow_interruptions:
568568
# TODO(aleix): This frame should really come from the top of the pipeline.
569569
await self.broadcast_frame(InterruptionFrame)
570570

0 commit comments

Comments
 (0)