Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
chatgpt-io
Advanced tools
A simple Node.js module for interacting with the ChatGPT without using any Browser.
import chatGPT from "chatgpt-io";
(async () => {
let bot = new chatGPT("<SESSION_TOKEN>");
await bot.waitForReady();
let response = await bot.ask("Hello?");
console.log(response);
})();
The new method operates without a browser by utilizing a server that has implemented bypass methods to function as a proxy. The library sends requests to the server, which then redirects the request to ChatGPT while bypassing Cloudflare and other bot detection measures. The server then returns the ChatGPT response, ensuring that the method remains effective even if ChatGPT implements changes to prevent bot usage. Our servers are continuously updated to maintain their bypass capabilities.
To install the package, run the following command:
npm install chatgpt-io
To use the package, require it in your code and create a new instance of the chatGPT
class, passing in your ChatGPT API session token as an argument.
import chatGPT from "chatgpt-io";
let bot = new chatGPT("<SESSION_TOKEN>");
// or if your accounts is pro
let bot = new chatGPT("<SESSION_TOKEN>", {
proAccount: true
});
Before making any requests to the API, you should wait for the bot
instance to be ready by calling the waitForReady
method. This ensures that the connection to the API has been established and any necessary setup has been completed.
await bot.waitForReady();
Once the bot
instance is ready, you can send a message to the API using the ask
method. This method takes a message string as its first argument and an optional conversation ID as its second argument. If a conversation ID is not provided, the default conversation will be used.
let response = await bot.ask("Hello?");
console.log(response);
let response2 = await bot.ask("Hello?", "any-unique-string");
console.log(response2);
The ask
method returns a promise that resolves with the API's response to the message.
This library is now using ES6 syntax and is intended to be used with the "module" type in your package.json file. This means that you will need to update your package.json file to include the following:
{
"type": "module"
}
In addition, you will need to change any instances of "require" to "import" in your code. For example, instead of:
const chatGPT = require("chatgpt-io");
You will now use:
import chatGPT from "chatgpt-io";
ChatGPT
classconstructor(sessionToken: string, options: object)
Creates a new instance of the ChatGPT
class.
sessionToken
(string): Your ChatGPT API session token.options
(object):options = {
name: string; // default = "default"
reconnection: boolean; // default = true
forceNew: boolean; // default = false
logLevel: LogLevel; // default = Info
bypassNode: string; // default = "https://gpt.pawan.krd"
proAccount: boolean; // default = false
}
LogLevel = {
Trace = 0,
Debug = 1,
Info = 2,
Warning = 3,
Error = 4
}
waitForReady(): Promise<void>
Waits for the chatGPT
instance to be ready to make requests to the API. Returns a promise that resolves when the instance is ready.
ask(message: string, conversationId?: string): Promise<string>
Sends a message to the API and returns a promise that resolves with the API's response.
message
(string): The message to send to the API.conversationId
(string, optional): The ID of the conversation to send the message to. If not provided, the default conversation will be used.Here is an example of how to use the chatgpt-io
module to send a message to the API and log the response:
import chatGPT from "chatgpt-io";
(async function () {
let bot = new chatGPT("<SESSION_TOKEN>");
await bot.waitForReady();
// default conversation
let response = await bot.ask("Hello?");
console.log(response);
// specific conversation
let response2 = await bot.ask("Hello?", "any-unique-string");
console.log(response2);
})();
import chatGPT from "chatgpt-io";
(async function () {
let bot = new chatGPT("<SESSION_TOKEN>");
bot.onConnected = async () => {
await bot.waitForReady();
// default conversation
let response = await bot.ask("Hello?");
console.log(response);
};
})();
In examples/server.js
you can find an example of how to use the chatgpt-io
module to create a simple Fastify server that can be used to send messages to ChatGPT.
Run the server by setting the CHATGPT_SESSION_TOKEN
environment variable to your ChatGPT API session token and running the following command:
node examples/server.js
You can also set the port with the CHATGPT_PORT
environment variable. The default port is 3000
.
To send a message to the server, make a POST
request to http://localhost:<port>/ask
with the following JSON body:
{
"message": "Hello?",
"conversation_id": "any-unique-string"
}
A standalone version of this API server can be found at chatgpt-io-api.
FAQs
ChatGPT Client API, Blazing Fast, without using browser
We found that chatgpt-io demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.