free-chatgpt-3.5-turbo-api
v1.0.2
Published
Free API for ChatGPT 3.5 TURBO!
Downloads
251
Maintainers
Readme
🤖 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);
});