chatgpt-unlimited
v1.0.0
Published
Generate response to questions using AI Chat
Downloads
5
Readme
Generate response to questions using AI Chat.
How To Use
const Chat = require("chatgpt-unlimited");
async function chat (){
const prompt = "Hello! How Are you?";
const response = await Chat.create(prompt);
console.log(response);
};
chat();