acheong08 / EdgeGPT
- понедельник, 13 февраля 2023 г. в 00:13:45
Reverse engineered API of Microsoft's Bing Chat
UPDATE 2023/02/12 - Public access available again
python3 -m pip install EdgeGPT --upgrade
We have a shared token for public use. If you have your own account with access, you can use that instead.
$ python3 -m EdgeGPT -h
EdgeGPT - A demo of reverse engineering the Bing GPT chatbot
Repo: github.com/acheong08/EdgeGPT
By: Antonio Cheong
!help for help
Type !exit to exit
Enter twice to send message
usage: EdgeGPT.py [-h] [--no-stream] [--bing-cookie BING_COOKIE]
options:
-h, --help show this help message and exit
--no-stream
--bing-cookie BING_COOKIE (Optional)
Use Async for the best experience
Reference code for more advanced example of usage
import asyncio
from EdgeGPT import Chatbot
async def main():
bot = Chatbot()
print(await bot.ask(prompt="Hello world"))
await bot.close()
if __name__ == "__main__":
asyncio.run(main())
This project exists thanks to all the people who contribute.