🤖 FREE CHAT GPT 3.5 TURBO
- Instalação
$ npm install free-chatgpt-3.5-turbo-api- Importar
import { chatGPT } from "free-chatgpt-3.5-turbo-api";- Exemplo
chatGPT({ prompt: "Eae tudo bem?"})
.then((resultado) => {
console.log(resultado);
})
.catch((error) => {
console.error(error);
});