(self, voice_route: str)
| 55 | """Bridge incoming websocket control messages into Pipecat frames.""" |
| 56 | |
| 57 | def __init__(self, voice_route: str): |
| 58 | super().__init__() |
| 59 | self._voice_route = voice_route |
| 60 | |
| 61 | async def process_frame(self, frame: Frame, direction: FrameDirection): |
| 62 | await super().process_frame(frame, direction) |