Antonio Cheong
commited on
Commit
·
d5c8ae6
1
Parent(s):
9bf779e
Update instructions
Browse files
README.md
CHANGED
@@ -32,6 +32,7 @@
|
|
32 |
- [Quick start](#quick-start)
|
33 |
- [Developer demo](#developer-demo)
|
34 |
- [Work in progress](#work-in-progress)
|
|
|
35 |
- [Contributors](#contributors)
|
36 |
|
37 |
## Setup
|
@@ -70,10 +71,11 @@ We have a shared token for public use. If you have your own account with access,
|
|
70 |
|
71 |
</summary>
|
72 |
|
73 |
-
-
|
74 |
-
- Go to
|
75 |
-
-
|
76 |
-
-
|
|
|
77 |
|
78 |
</details>
|
79 |
|
@@ -84,7 +86,7 @@ We have a shared token for public use. If you have your own account with access,
|
|
84 |
### Quick start
|
85 |
|
86 |
```
|
87 |
-
$ python3 -m EdgeGPT -h
|
88 |
|
89 |
EdgeGPT - A demo of reverse engineering the Bing GPT chatbot
|
90 |
Repo: github.com/acheong08/EdgeGPT
|
@@ -94,13 +96,13 @@ We have a shared token for public use. If you have your own account with access,
|
|
94 |
|
95 |
Type !exit to exit
|
96 |
Enter twice to send message
|
97 |
-
|
98 |
-
usage: EdgeGPT.py [-h] [--no-stream]
|
99 |
|
100 |
options:
|
101 |
-h, --help show this help message and exit
|
102 |
--no-stream
|
103 |
-
--
|
104 |
```
|
105 |
|
106 |
-----
|
|
|
32 |
- [Quick start](#quick-start)
|
33 |
- [Developer demo](#developer-demo)
|
34 |
- [Work in progress](#work-in-progress)
|
35 |
+
- [Star History](#star-history)
|
36 |
- [Contributors](#contributors)
|
37 |
|
38 |
## Setup
|
|
|
71 |
|
72 |
</summary>
|
73 |
|
74 |
+
- Install the cookie editor extension for [Chrome](https://chrome.google.com/webstore/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm) or [Firefox](https://addons.mozilla.org/en-US/firefox/addon/cookie-editor/)
|
75 |
+
- Go to `bing.com`
|
76 |
+
- Open the extension
|
77 |
+
- Click "Export" on the bottom right (This saves your cookies to clipboard)
|
78 |
+
- Paste your cookies into a file `cookies.json`
|
79 |
|
80 |
</details>
|
81 |
|
|
|
86 |
### Quick start
|
87 |
|
88 |
```
|
89 |
+
$ python3 -m EdgeGPT -h
|
90 |
|
91 |
EdgeGPT - A demo of reverse engineering the Bing GPT chatbot
|
92 |
Repo: github.com/acheong08/EdgeGPT
|
|
|
96 |
|
97 |
Type !exit to exit
|
98 |
Enter twice to send message
|
99 |
+
|
100 |
+
usage: EdgeGPT.py [-h] [--no-stream] --cookie-file COOKIE_FILE
|
101 |
|
102 |
options:
|
103 |
-h, --help show this help message and exit
|
104 |
--no-stream
|
105 |
+
--cookie-file COOKIE_FILE
|
106 |
```
|
107 |
|
108 |
-----
|