easygptjs
v1.5.0
Published
EasyGPT provides free access to text and image generation models.
Readme
easygptjs
EasyGPT provides free access to text generation models, now in JavaScript!
No API key required.
Installation
npm install easygptjsUsage
import EasyGPT35 from "easygptjs";
// No API key required.
const openai = new EasyGPT35();
async function main() {
const chatCompletion = await openai.chat.completions.create("Hello world!");
console.log(chatCompletion);
}
main();