You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -25,34 +25,10 @@ This package is a Node.js wrapper around [ChatGPT](https://openai.com/blog/chatg
25
25
26
26
You can use it to start building projects powered by ChatGPT like chatbots, websites, etc...
27
27
28
-
## How it works
29
-
30
-
This package requires a valid session token from ChatGPT to access it's unofficial REST API.
31
-
32
-
To get a session token:
33
-
34
-
1. Go to https://chat.openai.com/chat and log in or sign up.
35
-
2. Open dev tools.
36
-
3. Open `Application` > `Cookies`.
37
-

38
-
4. Copy the value for `__Secure-next-auth.session-token` and save it to your environment.
39
-
40
-
If you want to run the built-in demo, store this value as `SESSION_TOKEN` in a local `.env` file.
41
-
42
-
> **Note**
43
-
> This package will switch to using the official API once it's released.
44
-
45
-
> **Note**
46
-
> 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).
47
-
48
28
## Install
49
29
50
30
```bash
51
-
npm install --save chatgpt
52
-
# or
53
-
yarn add chatgpt
54
-
# or
55
-
pnpm add chatgpt
31
+
npm install chatgpt
56
32
```
57
33
58
34
## Usage
@@ -61,9 +37,10 @@ pnpm add chatgpt
61
37
import { ChatGPTAPI } from'chatgpt'
62
38
63
39
asyncfunction example() {
40
+
// sessionToken is required; see below for details
64
41
const api =newChatGPTAPI({ sessionToken: process.env.SESSION_TOKEN })
65
42
66
-
// ensure the API is properly authenticated (optional)
43
+
// ensure the API is properly authenticated
67
44
awaitapi.ensureAuth()
68
45
69
46
// send a message and wait for the response
@@ -85,41 +62,65 @@ const api = new ChatGPTAPI({
85
62
})
86
63
```
87
64
88
-
A full [example](./src/example.ts) is included for testing purposes:
65
+
A full [demo](./src/demo.ts) is included for testing purposes:
89
66
90
67
```bash
91
68
# 1. clone repo
92
69
# 2. install node deps
93
70
# 3. set `SESSION_TOKEN` in .env
94
71
# 4. run:
95
-
npx tsx src/example.ts
72
+
npx tsx src/demo.ts
96
73
```
97
74
98
75
## Docs
99
76
100
77
See the [auto-generated docs](./docs/classes/ChatGPTAPI.md) for more info on methods and parameters.
101
78
79
+
## How it works
80
+
81
+
**This package requires a valid session token from ChatGPT to access it's unofficial REST API.**
82
+
83
+
To get a session token:
84
+
85
+
1. Go to https://chat.openai.com/chat and log in or sign up.
86
+
2. Open dev tools.
87
+
3. Open `Application` > `Cookies`.
88
+

89
+
4. Copy the value for `__Secure-next-auth.session-token` and save it to your environment.
90
+
91
+
If you want to run the built-in demo, store this value as `SESSION_TOKEN` in a local `.env` file.
92
+
93
+
> **Note**
94
+
> This package will switch to using the official API once it's released.
95
+
96
+
> **Note**
97
+
> 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).
98
+
102
99
## Examples
103
100
104
-
All of these awesome projects use the `chatgpt` package. 🤯
101
+
All of these awesome projects are built using the `chatgpt` package. 🤯
105
102
106
103
-[Twitter Bot](https://github.com/transitive-bullshit/chatgpt-twitter-bot) powered by ChatGPT ✨
107
104
- Mention [@ChatGPTBot](https://twitter.com/ChatGPTBot) on Twitter with your prompt to try it out
If you create a cool integration, feel free to open a PR and add it to the list.
115
115
116
116
## Credit
117
117
118
-
- Huge thanks to [@RomanHotsiy](https://github.com/RomanHotsiy), [@ElijahPepe](https://github.com/ElijahPepe), [@wong2](https://github.com/wong2), and all the other contributors 💪
118
+
- Huge thanks to [@RomanHotsiy](https://github.com/RomanHotsiy), [@ElijahPepe](https://github.com/ElijahPepe), and all the other contributors 💪
119
119
- The original browser version was inspired by this [Go module](https://github.com/danielgross/whatsapp-gpt) by [Daniel Gross](https://github.com/danielgross)
120
+
- The original REST version was inspired by [chat-gpt-google-extension](https://github.com/wong2/chat-gpt-google-extension) by [@wong2](https://github.com/wong2)
Support my open source work by <ahref="https://twitter.com/transitive_bs">following me on twitter <imgsrc="https://storage.googleapis.com/saasify-assets/twitter-logo.svg"alt="twitter"height="24px"align="center"></a>
126
+
If you found this project interesting, please consider supporting my open source work by[sponsoring me](https://github.com/sponsors/transitive-bullshit) or <ahref="https://twitter.com/transitive_bs">following me on twitter <imgsrc="https://storage.googleapis.com/saasify-assets/twitter-logo.svg"alt="twitter"height="24px"align="center"></a>
0 commit comments