inworld: removed unnecessary code from stop() and cancel()

This commit is contained in:
padillamt
2025-07-15 16:56:18 -07:00
parent 7861b911c0
commit 384838147a

View File

@@ -173,7 +173,6 @@ class InworldTTSService(TTSService):
frame: The end frame.
"""
await super().stop(frame)
# await self._client.close()
async def cancel(self, frame: CancelFrame):
"""Cancel the Inworld HTTP TTS service.
@@ -182,7 +181,6 @@ class InworldTTSService(TTSService):
frame: The cancel frame.
"""
await super().cancel(frame)
# await self._client.close()
@traced_tts
async def run_tts(self, text: str) -> AsyncGenerator[Frame, None]: