Skip to main content

Reverse engineered Bing Chat API

Project description

Bing GPT

ChatGPT with internet access

Requirements

Setup

Checking access

  • Install the latest version of Microsoft Edge
  • Open http://bing.com/chat
  • If you see a chat feature, you are good to go

Getting authentication

  • Open the developer tools (F12)
  • Go to the Application tab → Storage → Cookies
  • Find the cookie named "_U"
  • Copy the value of the cookie
  • Method 1
    • export BING_U="<COOKIE_VALUE>"
  • Method 2
    • Use it as command line argument later

Installation

  • python3 -m pip install BingGPT

Demo usage

  • If BING_U in environment variables: python3 -m BingGPT
  • Else: python3 -m BingGPT "<COOKIE_VALUE>"

Developer

Use Async for the best experience

import asyncio
from BingGPT import Chatbot

async def main():
    """
    Main function
    """
    print("Initializing...")
    bot = Chatbot()
    await bot.start()
    while True:
        prompt = input("\nYou:\n")
        if prompt == "!exit":
            break
        elif prompt == "!help":
            print("""
            !help - Show this help message
            !exit - Exit the program
            !reset - Reset the conversation
            """)
            continue
        elif prompt == "!reset":
            await bot.reset()
            continue
        print("Bot:")
        print((await bot.ask(prompt=prompt))["item"]["messages"][1]["text"])
    await bot.close()


if __name__ == "__main__":
    print(
        """
        BingGPT - A demo of reverse engineering the Bing GPT chatbot
        Repo: github.com/acheong08/BingGPT
        By: Antonio Cheong

        !help for help

        Type !exit to exit
        Enter twice to send message
    """
    )
    asyncio.run(main())

Work in progress

  • Response streaming (Easily achievable)
  • Error handling

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

revBingGPT-0.0.1.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

revBingGPT-0.0.1-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

Details for the file revBingGPT-0.0.1.tar.gz.

File metadata

  • Download URL: revBingGPT-0.0.1.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for revBingGPT-0.0.1.tar.gz
Algorithm Hash digest
SHA256 d25d0050480a3e7786ec04c5a898228b7b3364c0ab0d6034e316f4623316c237
MD5 e19228bd4b9477e59d3da0120b1cadde
BLAKE2b-256 be0c44a718f5c4ab5609b1c494271cea505d14d56027832fe45d70a4d4bad3a9

See more details on using hashes here.

File details

Details for the file revBingGPT-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: revBingGPT-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 4.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for revBingGPT-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff659279dbd39dea1985e41ff021a2df9889fe754c953075c0509261a5e1f57e
MD5 e8e3c3b1417eace92f49d1619a23c380
BLAKE2b-256 78e314aabfd6a1a00a7acf1f5e3e5e684a38e38b995553694525cc48f2ec00d3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page