Antonio Cheong
commited on
Commit
·
3de061f
1
Parent(s):
cbd58d0
rename to edge
Browse files- README.md +6 -6
- setup.py +4 -4
- src/{BingGPT.py → EdgeGPT.py} +2 -2
README.md
CHANGED
@@ -22,18 +22,18 @@ ChatGPT with internet access
|
|
22 |
- Use it as command line argument later
|
23 |
|
24 |
## Installation
|
25 |
-
- `python3 -m pip install
|
26 |
|
27 |
## Demo usage
|
28 |
-
- If `BING_U` in environment variables: `python3 -m
|
29 |
-
- Else: `python3 -m
|
30 |
|
31 |
## Developer
|
32 |
Use Async for the best experience
|
33 |
|
34 |
```python
|
35 |
import asyncio
|
36 |
-
from
|
37 |
|
38 |
async def main():
|
39 |
"""
|
@@ -64,8 +64,8 @@ async def main():
|
|
64 |
if __name__ == "__main__":
|
65 |
print(
|
66 |
"""
|
67 |
-
|
68 |
-
Repo: github.com/acheong08/
|
69 |
By: Antonio Cheong
|
70 |
|
71 |
!help for help
|
|
|
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
|
33 |
|
34 |
```python
|
35 |
import asyncio
|
36 |
+
from EdgeGPT import Chatbot
|
37 |
|
38 |
async def main():
|
39 |
"""
|
|
|
64 |
if __name__ == "__main__":
|
65 |
print(
|
66 |
"""
|
67 |
+
EdgeGPT - A demo of reverse engineering the Edge GPT chatbot
|
68 |
+
Repo: github.com/acheong08/EdgeGPT
|
69 |
By: Antonio Cheong
|
70 |
|
71 |
!help for help
|
setup.py
CHANGED
@@ -2,17 +2,17 @@ from setuptools import find_packages
|
|
2 |
from setuptools import setup
|
3 |
|
4 |
setup(
|
5 |
-
name="
|
6 |
version="0.0.1",
|
7 |
license="GNU General Public License v2.0",
|
8 |
author="Antonio Cheong",
|
9 |
author_email="[email protected]",
|
10 |
-
description="Reverse engineered
|
11 |
packages=find_packages("src"),
|
12 |
package_dir={"": "src"},
|
13 |
-
url="https://github.com/acheong08/
|
14 |
install_requires=["asyncio", "requests", "websockets"],
|
15 |
long_description=open("README.md", encoding="utf-8").read(),
|
16 |
long_description_content_type="text/markdown",
|
17 |
-
py_modules=["
|
18 |
)
|
|
|
2 |
from setuptools import setup
|
3 |
|
4 |
setup(
|
5 |
+
name="EdgeGPT",
|
6 |
version="0.0.1",
|
7 |
license="GNU General Public License v2.0",
|
8 |
author="Antonio Cheong",
|
9 |
author_email="[email protected]",
|
10 |
+
description="Reverse engineered Edge Chat API",
|
11 |
packages=find_packages("src"),
|
12 |
package_dir={"": "src"},
|
13 |
+
url="https://github.com/acheong08/EdgeGPT",
|
14 |
install_requires=["asyncio", "requests", "websockets"],
|
15 |
long_description=open("README.md", encoding="utf-8").read(),
|
16 |
long_description_content_type="text/markdown",
|
17 |
+
py_modules=["EdgeGPT"],
|
18 |
)
|
src/{BingGPT.py → EdgeGPT.py}
RENAMED
@@ -285,8 +285,8 @@ async def main():
|
|
285 |
if __name__ == "__main__":
|
286 |
print(
|
287 |
"""
|
288 |
-
|
289 |
-
Repo: github.com/acheong08/
|
290 |
By: Antonio Cheong
|
291 |
|
292 |
!help for help
|
|
|
285 |
if __name__ == "__main__":
|
286 |
print(
|
287 |
"""
|
288 |
+
EdgeGPT - A demo of reverse engineering the Bing GPT chatbot
|
289 |
+
Repo: github.com/acheong08/EdgeGPT
|
290 |
By: Antonio Cheong
|
291 |
|
292 |
!help for help
|