chatgpt-api/readme.md

378 wiersze
18 KiB
Markdown
Czysty Zwykły widok Historia

2022-12-18 06:17:57 +00:00
# Update December 18, 2022 <!-- omit in toc -->
2022-12-12 01:52:50 +00:00
On December 11th, OpenAI added Cloudflare protections that make it more difficult to access the unofficial API.
2022-12-12 01:52:50 +00:00
2022-12-18 07:34:34 +00:00
To circumvent these protections, we've added a **fully automated browser-based solution**, which uses Puppeteer and CAPTCHA solvers under the hood. 🔥
```ts
import { ChatGPTAPIBrowser } from 'chatgpt'
const api = new ChatGPTAPIBrowser({
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD
})
2022-12-17 09:56:06 +00:00
await api.initSession()
2022-12-17 09:56:06 +00:00
const result = await api.sendMessage('Hello World!')
console.log(result.response)
```
2022-12-18 07:40:38 +00:00
This solution is not lightweight, but it does work a lot more consistently than the previous REST API-based approach. For example, I'm currently using this approach to automate 10 concurrent OpenAI accounts for my [Twitter bot](https://github.com/transitive-bullshit/chatgpt-twitter-bot). 😂
2022-12-18 06:17:57 +00:00
To use the updated version, **make sure you're using the latest version of this package and Node.js >= 18**. Then update your code following the examples below, paying special attention to the sections on [Authentication](#authentication), [Restrictions](#restrictions), and [CAPTCHAs](#captchas).
2022-12-12 01:52:50 +00:00
2022-12-18 07:34:34 +00:00
We recently added support for CAPTCHA automation using either [nopecha](https://nopecha.com/) or [2captcha](https://2captcha.com). Keep in mind that this package will be updated to use the official API as soon as it's released, so things should get much easier over time. 💪
2022-12-12 01:52:50 +00:00
2022-12-12 18:41:19 +00:00
Lastly, please consider starring this repo and <a href="https://twitter.com/transitive_bs">following me on twitter <img src="https://storage.googleapis.com/saasify-assets/twitter-logo.svg" alt="twitter" height="24px" align="center"></a> to help support the project.
2022-12-12 17:35:28 +00:00
Thanks && cheers,
[Travis](https://twitter.com/transitive_bs)
2022-12-12 01:52:50 +00:00
---
2022-12-05 07:09:24 +00:00
<p align="center">
<img alt="Example usage" src="/media/demo.gif">
</p>
2022-12-02 23:43:59 +00:00
# ChatGPT API <!-- omit in toc -->
2022-12-05 05:13:36 +00:00
> Node.js client for the unofficial [ChatGPT](https://openai.com/blog/chatgpt/) API.
2022-12-02 23:43:59 +00:00
[![NPM](https://img.shields.io/npm/v/chatgpt.svg)](https://www.npmjs.com/package/chatgpt) [![Build Status](https://github.com/transitive-bullshit/chatgpt-api/actions/workflows/test.yml/badge.svg)](https://github.com/transitive-bullshit/chatgpt-api/actions/workflows/test.yml) [![MIT License](https://img.shields.io/badge/license-MIT-blue)](https://github.com/transitive-bullshit/chatgpt-api/blob/main/license) [![Prettier Code Formatting](https://img.shields.io/badge/code_style-prettier-brightgreen.svg)](https://prettier.io)
- [Intro](#intro)
2022-12-03 05:06:26 +00:00
- [Install](#install)
2022-12-03 00:04:53 +00:00
- [Usage](#usage)
2022-12-07 00:27:55 +00:00
- [Docs](#docs)
- [Demos](#demos)
2022-12-12 18:49:00 +00:00
- [Authentication](#authentication)
2022-12-18 06:17:57 +00:00
- [CAPTCHAs](#captchas)
2022-12-18 22:23:02 +00:00
- [Using Proxies](#using-proxies)
2022-12-13 06:26:05 +00:00
- [Restrictions](#restrictions)
2022-12-07 04:29:10 +00:00
- [Projects](#projects)
2022-12-07 00:19:30 +00:00
- [Compatibility](#compatibility)
2022-12-07 04:29:10 +00:00
- [Credits](#credits)
2022-12-02 23:43:59 +00:00
- [License](#license)
## Intro
2022-12-03 05:34:15 +00:00
This package is a Node.js wrapper around [ChatGPT](https://openai.com/blog/chatgpt) by [OpenAI](https://openai.com). TS batteries included. ✨
2022-12-03 00:04:53 +00:00
2022-12-03 05:57:23 +00:00
You can use it to start building projects powered by ChatGPT like chatbots, websites, etc...
2022-12-03 00:04:53 +00:00
2022-12-03 05:06:26 +00:00
## Install
```bash
2022-12-12 17:35:28 +00:00
npm install chatgpt puppeteer
2022-12-03 05:06:26 +00:00
```
2022-12-12 17:35:28 +00:00
`puppeteer` is an optional peer dependency used to automate bypassing the Cloudflare protections via `getOpenAIAuth`. The main API wrapper uses `fetch` directly.
2022-12-03 00:04:53 +00:00
## Usage
2022-12-07 19:23:35 +00:00
2022-12-03 00:04:53 +00:00
```ts
2022-12-18 06:17:57 +00:00
import { ChatGPTAPIBrowser } from 'chatgpt'
2022-12-03 00:43:44 +00:00
2022-12-03 00:04:53 +00:00
async function example() {
2022-12-12 17:41:26 +00:00
// use puppeteer to bypass cloudflare (headful because of captchas)
2022-12-18 06:17:57 +00:00
const api = new ChatGPTAPIBrowser({
2022-12-12 22:12:57 +00:00
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD
2022-12-07 00:27:55 +00:00
})
2022-12-03 00:04:53 +00:00
2022-12-17 09:56:06 +00:00
await api.initSession()
2022-12-03 00:04:53 +00:00
2022-12-18 06:17:57 +00:00
const result = await api.sendMessage('Hello World!')
2022-12-17 09:56:06 +00:00
console.log(result.response)
2022-12-03 00:04:53 +00:00
}
```
2022-12-18 06:17:57 +00:00
<details>
<summary>Or, if you want to use the REST-based version:</summary>
```ts
2022-12-18 06:17:57 +00:00
import { ChatGPTAPI, getOpenAIAuth } from 'chatgpt'
async function example() {
// use puppeteer to bypass cloudflare (headful because of captchas)
2022-12-18 06:17:57 +00:00
const openAIAuth = await getOpenAIAuth({
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD
})
2022-12-18 06:17:57 +00:00
const api = new ChatGPTAPI({ ...openAIAuth })
2022-12-17 09:56:06 +00:00
await api.initSession()
2022-12-18 06:17:57 +00:00
// send a message and wait for the response
const result = await api.sendMessage('Write a python version of bubble sort.')
// result.response is a markdown-formatted string
2022-12-17 09:56:06 +00:00
console.log(result.response)
}
```
2022-12-18 06:17:57 +00:00
</details>
2022-12-07 04:59:31 +00:00
ChatGPT responses are formatted as markdown by default. If you want to work with plaintext instead, you can use:
2022-12-05 05:34:15 +00:00
```ts
2022-12-18 06:17:57 +00:00
const api = new ChatGPTAPIBrowser({ email, password, markdown: false })
2022-12-05 05:34:15 +00:00
```
2022-12-17 09:56:06 +00:00
If you want to track the conversation, use the `conversationId` and `messageId` in the result object, and pass them to `sendMessage` as `conversationId` and `parentMessageId` respectively.
2022-12-07 00:27:55 +00:00
```ts
2022-12-18 06:17:57 +00:00
const api = new ChatGPTAPIBrowser({ email, password })
2022-12-17 09:56:06 +00:00
await api.initSession()
2022-12-07 00:27:55 +00:00
// send a message and wait for the response
2022-12-18 06:17:57 +00:00
let res = await api.sendMessage('What is OpenAI?')
2022-12-17 09:56:06 +00:00
console.log(res.response)
2022-12-07 00:27:55 +00:00
// send a follow-up
2022-12-18 06:17:57 +00:00
res = await api.sendMessage('Can you expand on that?', {
2022-12-17 09:56:06 +00:00
conversationId: res.conversationId,
parentMessageId: res.messageId
})
console.log(res.response)
2022-12-07 00:27:55 +00:00
// send another follow-up
2022-12-17 09:56:06 +00:00
// send a follow-up
2022-12-18 06:17:57 +00:00
res = await api.sendMessage('What were we talking about?', {
2022-12-17 09:56:06 +00:00
conversationId: res.conversationId,
parentMessageId: res.messageId
})
console.log(res.response)
2022-12-07 00:27:55 +00:00
```
2022-12-07 04:59:31 +00:00
Sometimes, ChatGPT will hang for an extended period of time before beginning to respond. This may be due to rate limiting or it may be due to OpenAI's servers being overloaded.
2022-12-07 04:29:10 +00:00
2022-12-07 09:04:13 +00:00
To mitigate these issues, you can add a timeout like this:
2022-12-07 04:29:10 +00:00
```ts
// timeout after 2 minutes (which will also abort the underlying HTTP request)
const response = await api.sendMessage('this is a timeout test', {
timeoutMs: 2 * 60 * 1000
})
```
2022-12-07 04:15:58 +00:00
<details>
<summary>Usage in CommonJS (Dynamic import)</summary>
```js
async function example() {
2022-12-07 04:15:58 +00:00
// To use ESM in CommonJS, you can use a dynamic import
const { ChatGPTAPI, getOpenAIAuth } = await import('chatgpt')
const openAIAuth = await getOpenAIAuth({
2022-12-12 22:12:57 +00:00
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD
2022-12-07 04:15:58 +00:00
})
const api = new ChatGPTAPI({ ...openAIAuth })
2022-12-17 09:56:06 +00:00
await api.initSession()
2022-12-17 09:56:06 +00:00
const result = await api.sendMessage('Hello World!')
console.log(result)
}
```
2022-12-07 04:15:58 +00:00
</details>
2022-12-07 00:27:55 +00:00
### Docs
2022-12-15 23:15:38 +00:00
See the [auto-generated docs](./docs/classes/ChatGPTAPI.md) for more info on methods and parameters. Here are the [docs](./docs/classes/ChatGPTAPIBrowser.md) for the browser-based version.
2022-12-07 00:27:55 +00:00
### Demos
To run the included demos:
1. clone repo
2. install node deps
3. set `OPENAI_EMAIL` and `OPENAI_PASSWORD` in .env
A [basic demo](./demos/demo.ts) is included for testing purposes:
2022-12-03 00:53:24 +00:00
2022-12-03 05:59:20 +00:00
```bash
2022-12-13 04:07:58 +00:00
npx tsx demos/demo.ts
2022-12-03 00:53:24 +00:00
```
A [conversation demo](./demos/demo-conversation.ts) is also included:
2022-12-02 23:43:59 +00:00
2022-12-07 00:27:55 +00:00
```bash
2022-12-13 04:07:58 +00:00
npx tsx demos/demo-conversation.ts
2022-12-07 00:27:55 +00:00
```
2022-12-02 23:43:59 +00:00
### Authentication
2022-12-05 22:15:16 +00:00
2022-12-18 07:37:29 +00:00
The authentication section relates to the REST-based version (using `getOpenAIAuth` + `ChatGPTAPI`). The browser-based solution, `ChatGPTAPIBrowser`, takes care of all the authentication for you.
2022-12-12 17:35:28 +00:00
On December 11, 2022, OpenAI added some additional Cloudflare protections which make it more difficult to access the unofficial API.
2022-12-05 22:15:16 +00:00
2022-12-12 17:35:28 +00:00
You'll need a valid OpenAI "session token" and Cloudflare "clearance token" in order to use the API.
2022-12-05 22:15:16 +00:00
2022-12-12 17:35:28 +00:00
We've provided an automated, Puppeteer-based solution `getOpenAIAuth` to fetch these for you, but you may still run into cases where you have to manually pass the CAPTCHA. We're working on a solution to automate this further.
You can also get these tokens manually, but keep in mind that the `clearanceToken` only lasts for max 2 hours.
<details>
<summary>Getting tokens manually</summary>
2022-12-12 17:41:26 +00:00
To get session token manually:
2022-12-05 22:15:16 +00:00
1. Go to https://chat.openai.com/chat and log in or sign up.
2. Open dev tools.
3. Open `Application` > `Cookies`.
![ChatGPT cookies](./media/session-token.png)
4. Copy the value for `__Secure-next-auth.session-token` and save it to your environment. This will be your `sessionToken`.
5. Copy the value for `cf_clearance` and save it to your environment. This will be your `clearanceToken`.
6. Copy the value of the `user-agent` header from any request in your `Network` tab, or copy the result of `navigator.userAgent` command on `Console` tab. This will be your `userAgent`.
2022-12-12 17:41:26 +00:00
Pass `sessionToken`, `clearanceToken`, and `userAgent` to the `ChatGPTAPI` constructor.
2022-12-05 22:15:16 +00:00
</details>
2022-12-05 22:15:16 +00:00
> **Note**
2022-12-12 17:41:26 +00:00
> This package will switch to using the official API once it's released, which will make this process much simpler.
2022-12-05 22:15:16 +00:00
2022-12-18 06:17:57 +00:00
### CAPTCHAs
2022-12-18 07:37:29 +00:00
The browser portions of this package use Puppeteer to automate as much as possible, including solving all CAPTCHAs. 🔥
2022-12-18 06:17:57 +00:00
Basic Cloudflare CAPTCHAs are handled by default, but if you want to automate the email + password Recaptchas, you'll need to sign up for one of these paid providers:
- [nopecha](https://nopecha.com/) - Uses AI to solve CAPTCHAS
- Faster and cheaper
- Set the `NOPECHA_KEY` env var to your nopecha API key
- [Demo video](https://user-images.githubusercontent.com/552829/208235991-de4890f2-e7ba-4b42-bf55-4fcd792d4b19.mp4) of nopecha solving the login Recaptcha (41 seconds)
- [2captcha](https://2captcha.com) - Uses real people to solve CAPTCHAS
- More well-known solution that's been around longer
- Set the `CAPTCHA_TOKEN` env var to your 2captcha API token
Alternatively, if your OpenAI account uses Google Auth, you shouldn't encounter any of the more complicated Recaptchas — and can avoid using these third-party providers. To use Google auth, make sure your OpenAI account is using Google and then set `isGoogleLogin` to `true` whenever you're passing your `email` and `password`. For example:
```ts
const api = new ChatGPTAPIBrowser({
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD,
isGoogleLogin: true
})
```
2022-12-18 22:23:02 +00:00
### Using Proxies
The browser implementation supports setting a proxy server. This is useful if you're running into rate limiting issues or if you want to use a proxy to hide your IP address.
To use a proxy, pass the `proxyServer` option to the `ChatGPTAPIBrowser` constructor, or simply set the `PROXY_SERVER` env var. For more information on the format, see [here](https://www.chromium.org/developers/design-documents/network-settings).
```ts
const api = new ChatGPTAPIBrowser({
email: process.env.OPENAI_EMAIL,
password: process.env.OPENAI_PASSWORD,
proxyServer: '<ip>:<port>'
})
```
You can also set the `PROXY_VALIDATE_IP` env var to your proxy's IP address. This will be used to validate that the proxy is working correctly, and will throw an error if it's not.
2022-12-13 06:26:05 +00:00
### Restrictions
2022-12-12 17:35:28 +00:00
2022-12-18 06:17:57 +00:00
These restrictions are for the `getOpenAIAuth` + `ChatGPTAPI` solution, which uses the unofficial API. The browser-based solution, `ChatGPTAPIBrowser`, generally doesn't have any of these restrictions.
2022-12-13 06:32:05 +00:00
**Please read carefully**
2022-12-12 17:35:28 +00:00
- You must use `node >= 18` at the moment. I'm using `v19.2.0` in my testing.
- Cloudflare `cf_clearance` **tokens expire after 2 hours**, so right now we recommend that you refresh your `cf_clearance` token every hour or so.
- Your `user-agent` and `IP address` **must match** from the real browser window you're logged in with to the one you're using for `ChatGPTAPI`.
- This means that you currently can't log in with your laptop and then run the bot on a server or proxy somewhere.
2022-12-18 06:17:57 +00:00
- Cloudflare will still sometimes ask you to complete a CAPTCHA, so you may need to keep an eye on it and manually resolve the CAPTCHA.
2022-12-12 17:35:28 +00:00
- You should not be using this account while the bot is using it, because that browser window may refresh one of your tokens and invalidate the bot's session.
2022-12-05 22:15:16 +00:00
> **Note**
> Prior to v1.0.0, this package used a headless browser via [Playwright](https://playwright.dev/) to automate the web UI. Here are the [docs for the initial browser version](https://github.com/transitive-bullshit/chatgpt-api/tree/v0.4.2).
2022-12-07 04:29:10 +00:00
## Projects
2022-12-02 23:43:59 +00:00
2022-12-05 22:15:16 +00:00
All of these awesome projects are built using the `chatgpt` package. 🤯
2022-12-04 11:11:18 +00:00
- [Twitter Bot](https://github.com/transitive-bullshit/chatgpt-twitter-bot) powered by ChatGPT ✨
2022-12-04 09:15:21 +00:00
- Mention [@ChatGPTBot](https://twitter.com/ChatGPTBot) on Twitter with your prompt to try it out
2022-12-14 19:07:26 +00:00
- [Lovelines.xyz](https://lovelines.xyz?ref=chatgpt-api)
2022-12-04 18:48:40 +00:00
- [Chrome Extension](https://github.com/gragland/chatgpt-everywhere) ([demo](https://twitter.com/gabe_ragland/status/1599466486422470656))
2022-12-07 14:24:10 +00:00
- [VSCode Extension #1](https://github.com/mpociot/chatgpt-vscode) ([demo](https://twitter.com/marcelpociot/status/1599180144551526400), [updated version](https://github.com/timkmecl/chatgpt-vscode), [marketplace](https://marketplace.visualstudio.com/items?itemName=timkmecl.chatgpt))
2022-12-07 02:10:02 +00:00
- [VSCode Extension #2](https://github.com/barnesoir/chatgpt-vscode-plugin) ([marketplace](https://marketplace.visualstudio.com/items?itemName=JayBarnes.chatgpt-vscode-plugin))
- [VSCode Extension #3](https://github.com/gencay/vscode-chatgpt) ([marketplace](https://marketplace.visualstudio.com/items?itemName=gencay.vscode-chatgpt))
- [VSCode Extension #4](https://github.com/dogukanakkaya/chatgpt-code-vscode-extension) ([marketplace](https://marketplace.visualstudio.com/items?itemName=dogukanakkaya.chatgpt-code))
2022-12-08 10:38:18 +00:00
- [Raycast Extension #1](https://github.com/abielzulio/chatgpt-raycast) ([demo](https://twitter.com/abielzulio/status/1600176002042191875))
- [Raycast Extension #2](https://github.com/domnantas/raycast-chatgpt)
2022-12-08 22:18:51 +00:00
- [Telegram Bot #1](https://github.com/realies/chatgpt-telegram-bot)
- [Telegram Bot #2](https://github.com/dawangraoming/chatgpt-telegram-bot)
2022-12-26 02:14:25 +00:00
- [Telegram Bot #3](https://github.com/RainEggplant/chatgpt-telegram-bot) (group privacy mode, ID-based auth)
2023-01-02 00:18:18 +00:00
- [Telegram Bot #4](https://github.com/ArdaGnsrn/chatgpt-telegram) (queue system, ID-based chat thread)
2022-12-09 11:35:24 +00:00
- [Deno Telegram Bot](https://github.com/Ciyou/chatbot-telegram)
- [Go Telegram Bot](https://github.com/m1guelpf/chatgpt-telegram)
2022-12-29 07:15:25 +00:00
- [Telegram Bot for YouTube Summaries](https://github.com/codextde/youtube-summary)
- [GitHub ProBot](https://github.com/oceanlvr/ChatGPTBot)
- [Discord Bot #1](https://github.com/onury5506/Discord-ChatGPT-Bot)
- [Discord Bot #2](https://github.com/Nageld/ChatGPT-Bot)
2022-12-08 21:31:41 +00:00
- [Discord Bot #3](https://github.com/leinstay/gptbot)
- [Discord Bot #4 (selfbot)](https://github.com/0x7030676e31/cumsocket)
- [WeChat Bot #1](https://github.com/AutumnWhj/ChatGPT-wechat-bot)
- [WeChat Bot #2](https://github.com/fuergaosi233/wechat-chatgpt)
2022-12-08 12:50:52 +00:00
- [WeChat Bot #3](https://github.com/wangrongding/wechat-bot)
2022-12-09 02:21:47 +00:00
- [WeChat Bot #4](https://github.com/darknightlab/wechat-bot)
2022-12-09 07:55:37 +00:00
- [WeChat Bot #5](https://github.com/sunshanpeng/wechaty-chatgpt)
2022-12-08 03:03:30 +00:00
- [QQ Bot (plugin for Yunzai-bot)](https://github.com/ikechan8370/chatgpt-plugin)
2022-12-09 05:24:55 +00:00
- [QQ Bot (plugin for KiviBot)](https://github.com/KiviBotLab/kivibot-plugin-chatgpt)
2022-12-09 14:33:28 +00:00
- [QQ Bot (oicq)](https://github.com/easydu2002/chat_gpt_oicq)
2022-12-10 02:37:08 +00:00
- [QQ Bot (oicq + RabbitMQ)](https://github.com/linsyking/ChatGPT-QQBot)
- [QQ Bot (go-cqhttp)](https://github.com/PairZhu/ChatGPT-QQRobot)
2022-12-05 22:15:16 +00:00
- [EXM smart contracts](https://github.com/decentldotland/molecule)
2022-12-06 14:26:24 +00:00
- [Flutter ChatGPT API](https://github.com/coskuncay/flutter_chatgpt_api)
2022-12-07 23:37:33 +00:00
- [Carik Bot](https://github.com/luridarmawan/Carik)
2022-12-08 05:34:36 +00:00
- [Github Action for reviewing PRs](https://github.com/kxxt/chatgpt-action/)
2022-12-11 00:56:19 +00:00
- [WhatsApp Bot #1](https://github.com/pascalroget/whatsgpt) (multi-user support)
- [WhatsApp Bot #2](https://github.com/amosayomide05/chatgpt-whatsapp-bot)
2022-12-12 11:40:57 +00:00
- [WhatsApp Bot #3](https://github.com/navopw/whatsapp-chatgpt)
2023-01-09 10:25:56 +00:00
- [WhatsApp Bot #4] (https://github.com/noelzappy/chatgpt-whatsapp) (schedule periodic messages)
- [Matrix Bot](https://github.com/matrixgpt/matrix-chatgpt-bot)
2022-12-10 06:47:42 +00:00
- [Rental Cover Letter Generator](https://sharehouse.app/ai)
2022-12-10 20:57:14 +00:00
- [Assistant CLI](https://github.com/diciaup/assistant-cli)
2022-12-11 07:51:31 +00:00
- [Teams Bot](https://github.com/formulahendry/chatgpt-teams-bot)
- [Askai](https://github.com/yudax42/askai)
- [TalkGPT](https://github.com/ShadovvBeast/TalkGPT)
2022-12-13 18:28:07 +00:00
- [iOS Shortcut](https://github.com/leecobaby/shortcuts/blob/master/other/ChatGPT_EN.md)
2022-12-28 16:29:05 +00:00
- [Slack Bot #1](https://github.com/trietphm/chatgpt-slackbot/)
- [Slack Bot #2](https://github.com/lokwkin/chatgpt-slackbot-node/) (with queueing mechanism)
2022-12-17 16:28:28 +00:00
- [Electron Bot](https://github.com/ShiranAbir/chaty)
- [Kodyfire CLI](https://github.com/nooqta/chatgpt-kodyfire)
2022-12-18 19:52:41 +00:00
- [Twitch Bot](https://github.com/BennyDeeDev/chatgpt-twitch-bot)
- [Continuous Conversation](https://github.com/DanielTerletzkiy/chat-gtp-assistant)
2022-12-20 04:20:06 +00:00
- [Figma plugin](https://github.com/frederickk/chatgpt-figma-plugin)
2023-01-02 01:25:27 +00:00
- [NestJS server](https://github.com/RusDyn/chatgpt_nestjs_server)
2023-01-05 21:18:17 +00:00
- [Wordsmith: Add-in for Microsoft Word](https://github.com/xtremehpx/Wordsmith)
2023-01-09 10:25:56 +00:00
2022-12-04 11:11:18 +00:00
If you create a cool integration, feel free to open a PR and add it to the list.
2022-12-07 04:29:10 +00:00
## Compatibility
This package is ESM-only. It supports:
- Node.js >= 18
2022-12-12 17:41:26 +00:00
- Node.js 17, 16, and 14 were supported in earlier versions, but OpenAI's Cloudflare update caused a bug with `undici` on v17 and v16 that needs investigation. So for now, use `node >= 18`
- We recommend against using `chatgpt` from client-side browser code because it would expose your private session token
- If you want to build a website using `chatgpt`, we recommend using it only from your backend API
2022-12-07 04:29:10 +00:00
## Credits
2022-12-04 10:09:35 +00:00
2022-12-18 06:17:57 +00:00
- Huge thanks to [@waylaidwanderer](https://github.com/waylaidwanderer), [@abacaj](https://github.com/abacaj), [@wong2](https://github.com/wong2), [@simon300000](https://github.com/simon300000), [@RomanHotsiy](https://github.com/RomanHotsiy), [@ElijahPepe](https://github.com/ElijahPepe), and all the other contributors 💪
2022-12-05 05:34:15 +00:00
- The original browser version was inspired by this [Go module](https://github.com/danielgross/whatsapp-gpt) by [Daniel Gross](https://github.com/danielgross)
2022-12-07 19:21:38 +00:00
- [OpenAI](https://openai.com) for creating [ChatGPT](https://openai.com/blog/chatgpt/) 🔥
2022-12-02 23:43:59 +00:00
## License
MIT © [Travis Fischer](https://transitivebullsh.it)
2022-12-07 04:29:10 +00:00
If you found this project interesting, please consider [sponsoring me](https://github.com/sponsors/transitive-bullshit) or <a href="https://twitter.com/transitive_bs">following me on twitter <img src="https://storage.googleapis.com/saasify-assets/twitter-logo.svg" alt="twitter" height="24px" align="center"></a>