New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

fweegpt

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fweegpt

Uses the ChatGPT translate endpoint to give you free (unlimted?) access to ChatGPT.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

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)

Keywords

openai

FAQs

Package last updated on 14 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts