1.7.1 • Published 1 year ago

gpt-free v1.7.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

GPT-Free

GPT-3, but free


https://gptfree.top

Example usage

import { Client } from "gpt-free";

const client = new Client();
const conversation = client.model("chat");

const response = conversation.ask("Hello! Write me an essay on the impact of AI.");

// example chunked usage

response.onChunk(chunk => {
    process.stdout.write(chunk);
});

response.onEnd(() => {
    console.log("\nDone!");
});

// example promise usage

response.then(result => {
    console.log(result);
});
1.7.1

1 year ago

1.7.0

1 year ago

1.6.0

1 year ago

1.5.2

1 year ago

1.5.1

1 year ago

1.5.0

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago