Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

free-chatgpt-3.5-turbo-api

seshdev63MIT1.0.2

Free API for ChatGPT 3.5 TURBO!

free chatgpt, chatgpt api, chatgpt

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);
  });