Skip to content

Instantly share code, notes, and snippets.

View MarcosNASA's full-sized avatar
🚀

Marcos S. MarcosNASA

🚀
View GitHub Profile
@MarcosNASA
MarcosNASA / ChatGPTVoice.js
Last active December 6, 2022 17:15
Gives ChatGPT a voice
const debounce = (delay) => (fn) => {
let timeoutId;
return (...args) => {
clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
fn(...args);
}, delay);
};
};
const speak = (text) => {