// Get the TTS message from user inputconst message = event.userInput; // Acknowledge the requestapi.twitch.sendChat("Generating TTS message....."); // Generate the TTS messageconst urls = await api.integrations.tts_monster.generateParsed(message); // Play the TTS message soundsawait api.vtftk.playSoundSeq( urls.map((url) => ({ src: url, volume: 1, }))); await api.twitch.sendChat(`Playing TTS message: ${message}`);