const tts = new SpeechKit.TTS({
apiKey: config.yandex_api_key,
text: 'Привет, это яндекс!',
lang: 'ru_RU',
format: 'mp3',
speaker: 'alyss',
}, () => {
console.log(tts);
});
const audioStream = tts.pipe();
bot.sendVoice(id, audioStream);