Antonio Cheong
commited on
Commit
·
6e1534b
1
Parent(s):
7b516d5
Fix docs and bump version
Browse files
README.md
CHANGED
@@ -16,17 +16,24 @@
|
|
16 |
|
17 |
#
|
18 |
|
19 |
-
> ## UPDATE 2023/02/
|
20 |
|
21 |
## Table of Contents
|
22 |
-
- [
|
23 |
-
- [
|
24 |
-
- [
|
25 |
-
- [
|
26 |
-
- [
|
27 |
-
- [
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
### Install package
|
32 |
```bash
|
@@ -34,16 +41,17 @@ python3 -m pip install EdgeGPT
|
|
34 |
```
|
35 |
|
36 |
### Requirements
|
|
|
37 |
|
38 |
- python 3.7+
|
39 |
-
- Microsoft Edge
|
40 |
-
- A Microsoft Account with early access to http://bing.com/chat
|
41 |
|
42 |
|
43 |
<details>
|
44 |
<summary>
|
45 |
|
46 |
-
### Checking access
|
47 |
|
48 |
</summary>
|
49 |
|
@@ -57,7 +65,7 @@ python3 -m pip install EdgeGPT
|
|
57 |
<details>
|
58 |
<summary>
|
59 |
|
60 |
-
### Getting authentication
|
61 |
|
62 |
</summary>
|
63 |
|
@@ -91,7 +99,7 @@ usage: EdgeGPT.py [-h] [--no-stream] [--bing-cookie BING_COOKIE]
|
|
91 |
options:
|
92 |
-h, --help show this help message and exit
|
93 |
--no-stream
|
94 |
-
--bing-cookie BING_COOKIE (
|
95 |
```
|
96 |
|
97 |
-----
|
|
|
16 |
|
17 |
#
|
18 |
|
19 |
+
> ## UPDATE 2023/02/12 - Public access available again
|
20 |
|
21 |
## Table of Contents
|
22 |
+
- [Edge GPT](#edge-gpt)
|
23 |
+
- [](#)
|
24 |
+
- [Table of Contents](#table-of-contents)
|
25 |
+
- [Setup](#setup)
|
26 |
+
- [Install package](#install-package)
|
27 |
+
- [Requirements](#requirements)
|
28 |
+
- [Checking access (Optional)](#checking-access-optional)
|
29 |
+
- [Getting authentication (Optional)](#getting-authentication-optional)
|
30 |
+
- [Usage](#usage)
|
31 |
+
- [Quick start](#quick-start)
|
32 |
+
- [Developer demo](#developer-demo)
|
33 |
+
- [Work in progress](#work-in-progress)
|
34 |
+
- [Contributors](#contributors)
|
35 |
+
|
36 |
+
## Setup
|
37 |
|
38 |
### Install package
|
39 |
```bash
|
|
|
41 |
```
|
42 |
|
43 |
### Requirements
|
44 |
+
We have a shared token for public use. If you have your own account with access, you can use that instead.
|
45 |
|
46 |
- python 3.7+
|
47 |
+
- Microsoft Edge (Optional)
|
48 |
+
- A Microsoft Account with early access to http://bing.com/chat (Optional)
|
49 |
|
50 |
|
51 |
<details>
|
52 |
<summary>
|
53 |
|
54 |
+
### Checking access (Optional)
|
55 |
|
56 |
</summary>
|
57 |
|
|
|
65 |
<details>
|
66 |
<summary>
|
67 |
|
68 |
+
### Getting authentication (Optional)
|
69 |
|
70 |
</summary>
|
71 |
|
|
|
99 |
options:
|
100 |
-h, --help show this help message and exit
|
101 |
--no-stream
|
102 |
+
--bing-cookie BING_COOKIE (Optional)
|
103 |
```
|
104 |
|
105 |
-----
|
setup.py
CHANGED
@@ -3,7 +3,7 @@ from setuptools import setup
|
|
3 |
|
4 |
setup(
|
5 |
name="EdgeGPT",
|
6 |
-
version="0.0.
|
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.25",
|
7 |
license="GNU General Public License v2.0",
|
8 |
author="Antonio Cheong",
|
9 |
author_email="[email protected]",
|