lewistham9x / ChatGPT-Official

ChatGPT Client using official OpenAI API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

chatgpt-official - Unofficial API client for ChatGPT that uses OpenAI official API [Discord]

NPM NPM GitHub issues GitHub forks GitHub stars GitHub license Discord server

A simple Node.js module for interacting with the ChatGPT without using any Browser using OpenAI official API.

Installation

To install the package, run the following command:

npm install chatgpt-official
import ChatGPT from "chatgpt-official";

let bot = new ChatGPT("<OPENAI_API_KEY>");

let response = await bot.ask("Hello?");
console.log(response);

Usage

import ChatGPT from "chatgpt-official";

let options = {
  temperature: 0.7, // OpenAI parameter
  max_tokens: 256, // OpenAI parameter [Max response size by tokens]
  top_p: 1, // OpenAI parameter
  frequency_penalty: 0, // OpenAI parameter
  presence_penalty: 0, // OpenAI parameter
  historySize: 50, // Max messages to remember per conversation
  instructions: `You are ChatGPT, a large language model trained by OpenAI.`, // initial instructions for the bot
  model: "text-chat-davinci-002-20230126", // OpenAI parameter
  stop: "<|im_end|>", // OpenAI parameter
}

let bot = new ChatGPT("<OPENAI_API_KEY>", options);  // Note: options is optional

let response = await bot.ask("Hello?");
console.log(response);

let conversationId = "conversation name";
let response1 = await bot.ask("Hello?", conversationId);
console.log(response1);

let conversationId2 = "another conversation name";
let response2 = await bot.ask("Hello?", conversationId2);
console.log(response2);
Thanks to waylaidwanderer for finding this method

About

ChatGPT Client using official OpenAI API

License:MIT License


Languages

Language:TypeScript 100.0%