From 8bbfa829d361067db59c27761f08f74a83769225 Mon Sep 17 00:00:00 2001 From: James Hush Date: Wed, 26 Nov 2025 12:27:02 +0100 Subject: [PATCH] Remove wait --- src/pipecat/processors/transcript_processor.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/pipecat/processors/transcript_processor.py b/src/pipecat/processors/transcript_processor.py index b769f1a56..8a36faa99 100644 --- a/src/pipecat/processors/transcript_processor.py +++ b/src/pipecat/processors/transcript_processor.py @@ -527,12 +527,6 @@ class TurnAwareTranscriptProcessor(BaseTranscriptProcessor): await self.push_frame(frame, direction) elif isinstance(frame, InterruptionFrame): - # Handle interruption - # Give a brief moment for any pending TTSTextFrames to process - import asyncio - - await asyncio.sleep(0.001) - # Emit assistant transcript message with what was spoken before interruption if self._current_turn_assistant_parts: assistant_content = concatenate_aggregated_text(self._current_turn_assistant_parts)