frames: remove StopInterruptionFrame

This commit is contained in:
Aleix Conchillo Flaqué
2025-08-29 16:40:01 -07:00
parent 81325be4f3
commit bd7d9346b7
10 changed files with 9 additions and 32 deletions

View File

@@ -21,7 +21,6 @@ from pipecat.frames.frames import (
LLMRunFrame,
StartFrame,
StartInterruptionFrame,
StopInterruptionFrame,
SystemFrame,
TextFrame,
TranscriptionFrame,
@@ -234,7 +233,6 @@ class TurnDetectionLLM(Pipeline):
return (
isinstance(frame, OpenAILLMContextFrame)
or isinstance(frame, StartInterruptionFrame)
or isinstance(frame, StopInterruptionFrame)
or isinstance(frame, FunctionCallInProgressFrame)
or isinstance(frame, FunctionCallResultFrame)
)