From 83a4c7d443794fd285eb6a0fe3ded52fc3ad4a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 12 May 2025 10:07:31 -0700 Subject: [PATCH] RTVIProcessor: remove unused code --- src/pipecat/processors/frameworks/rtvi.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/pipecat/processors/frameworks/rtvi.py b/src/pipecat/processors/frameworks/rtvi.py index 909dd15b7..c2f7004ba 100644 --- a/src/pipecat/processors/frameworks/rtvi.py +++ b/src/pipecat/processors/frameworks/rtvi.py @@ -639,8 +639,6 @@ class RTVIProcessor(FrameProcessor): super().__init__(**kwargs) self._config = config - self._pipeline: Optional[FrameProcessor] = None - self._bot_ready = False self._client_ready = False self._client_ready_id = "" @@ -754,11 +752,6 @@ class RTVIProcessor(FrameProcessor): else: await self.push_frame(frame, direction) - async def cleanup(self): - await super().cleanup() - if self._pipeline: - await self._pipeline.cleanup() - async def _start(self, frame: StartFrame): if not self._action_task: self._action_task = self.create_task(self._action_task_handler())