349 B
349 B
- ⚠️
TTSService.run_tts()now requires acontext_idparameter for context tracking.- Custom TTS service implementations must update their
run_tts()signature - Before:
async def run_tts(self, text: str) -> AsyncGenerator[Frame, None]: - After:
async def run_tts(self, text: str, context_id: str) -> AsyncGenerator[Frame, None]:
- Custom TTS service implementations must update their