Antonio Cheong commited on
Commit
e3f67ce
·
1 Parent(s): e24a429

Allow everyone to access the feature

Browse files
Files changed (2) hide show
  1. README.md +15 -4
  2. setup.py +1 -1
README.md CHANGED
@@ -1,17 +1,23 @@
1
  # Edge GPT
2
  ChatGPT with internet access
3
 
4
- ## Requirements
 
 
 
 
 
 
 
5
  - A Microsoft Account with early access to http://bing.com/chat
6
  - Microsoft Edge
7
 
8
- ## Setup
9
- ### Checking access
10
  - Install the latest version of Microsoft Edge
11
  - Open http://bing.com/chat
12
  - If you see a chat feature, you are good to go
13
 
14
- ### Getting authentication
15
  - Open the developer tools (F12)
16
  - Go to the Application tab → Storage → Cookies
17
  - Find the cookie named "_U"
@@ -21,12 +27,17 @@ ChatGPT with internet access
21
  - Method 2
22
  - Use it as command line argument later
23
 
 
 
24
  ## Installation
25
  - `python3 -m pip install EdgeGPT`
26
 
27
  ## Demo usage
 
28
  - If `BING_U` in environment variables: `python3 -m EdgeGPT`
29
  - Else: `python3 -m EdgeGPT "<COOKIE_VALUE>"`
 
 
30
 
31
  ## Developer
32
  Use Async for the best experience
 
1
  # Edge GPT
2
  ChatGPT with internet access
3
 
4
+ <details>
5
+ <summary>
6
+
7
+ ## Setup (optional)
8
+ Completely optional, but recommended if you have beta access to Bing Chat
9
+ </summary>
10
+
11
+ ### Requirements (Optional)
12
  - A Microsoft Account with early access to http://bing.com/chat
13
  - Microsoft Edge
14
 
15
+ ### Checking access (Optional)
 
16
  - Install the latest version of Microsoft Edge
17
  - Open http://bing.com/chat
18
  - If you see a chat feature, you are good to go
19
 
20
+ ### Getting authentication (Optional)
21
  - Open the developer tools (F12)
22
  - Go to the Application tab → Storage → Cookies
23
  - Find the cookie named "_U"
 
27
  - Method 2
28
  - Use it as command line argument later
29
 
30
+ </details>
31
+
32
  ## Installation
33
  - `python3 -m pip install EdgeGPT`
34
 
35
  ## Demo usage
36
+ ### With your own token (Optional)
37
  - If `BING_U` in environment variables: `python3 -m EdgeGPT`
38
  - Else: `python3 -m EdgeGPT "<COOKIE_VALUE>"`
39
+ ### Without a cookie
40
+ - `python3 -m EdgeGPT`
41
 
42
  ## Developer
43
  Use Async for the best experience
setup.py CHANGED
@@ -3,7 +3,7 @@ from setuptools import setup
3
 
4
  setup(
5
  name="EdgeGPT",
6
- version="0.0.5",
7
  license="GNU General Public License v2.0",
8
  author="Antonio Cheong",
9
  author_email="[email protected]",
 
3
 
4
  setup(
5
  name="EdgeGPT",
6
+ version="0.0.10",
7
  license="GNU General Public License v2.0",
8
  author="Antonio Cheong",
9
  author_email="[email protected]",