1.0.2 • Published 1 year ago
free-chatgpt-3.5-turbo-api v1.0.2
🤖 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);
});