(self)
| 150 | yield RichLog(id="bottom-pane", wrap=True, highlight=True, markup=True) |
| 151 | |
| 152 | async def on_mount(self) -> None: |
| 153 | self.run_worker(self.handle_realtime_connection()) |
| 154 | self.run_worker(self.send_mic_audio()) |
| 155 | |
| 156 | async def handle_realtime_connection(self) -> None: |
| 157 | async with self.client.realtime.connect(model="gpt-realtime") as conn: |
nothing calls this directly
no test coverage detected