Sending a second text chunk to the same TTS websocket context with continue_=True immediately stopped the ongoing audio generation instead of continuing sequentially. The docs on contexts did not make the pattern obvious. Another user found the fix: pass continue_=True on every context.send() call, including the very first chunk, not just the follow-ups. The reporter confirmed this resolved it.