Skip to content

VillainsRule/fweeGPT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FreeGPT

(Ab)uses the Translate endpoint of ChatGPT to give everyone free access to ChatGPT.

Still unpatched after 3 weeks of working (as of 2/14), and considering I already reported it to OAI, and I guess they just don't care. It's now an NPM package!!

npm i fweegpt
bun i fweegpt

Usage:

import askGPT from 'fweegpt';

const response = await askGPT({ prompt: 'What is the meaning of life?' });
console.log(response);

The modal is gpt-4.0 only; this is a locked feature of the translate endpoint. It's also fairly slow since each translation takes 3 requests to succeed.

You can also pass a full conversation history to continue a conversation:

import askGPT from '../dist/main';

const response = await askGPT({
    prompt: 'Add 2 to the previous result. Output only the response.',
    history: [
        { role: 'user', content: 'What is 2 + 2?' },
        { role: 'assistant', content: '2 + 2 is 4.' }
    ]
});

console.log('4 + 2 = ' + response);

Takedowns: hi@villainsrule.xyz (OAI just email me it ain't that hard)

About

(ab)uses the ChatGPT translate function to give anyone infinite free access to gpt-4.0!

Resources

Stars

Watchers

Forks