Giter VIP home page Giter VIP logo

chatgpt's Introduction

ChatGPT

PyPi Downloads

Reverse Engineered ChatGPT API by OpenAI. Extensible for chatbots etc.

Connect with me on Linkedin to support this project. (Not open for commercial opportunities yet. Too busy)

You can also follow me on Twitter to stay up to date.

BingGPT is out! It's just like ChatGPT but with live internet access. Reverse engineered from the pre-release by Microsoft.

You need to be waitlisted by Microsoft/Bing

V1.1 Proxy API

Update 2023/02/11 - I am getting DDOSed. I might not be able to keep hosting it. Use V1 or host a bypass server yourself

The proxy is identical to V1 but uses a proxy to bypass the browser automation. This is the recommended version. You can read up on the documentation below

Differences:

  • Automatic session refresh on client side
  • Browserless
from revChatGPT.Proxied import Chatbot

Notes

Proxy server is open source at https://github.com/acheong08/ChatGPT-Proxy

Usage

  • Save your email and password to $HOME/.config/revChatGPT/config.json
{"email": "<your username>", "password": "<your password>"}

python3 -m revChatGPT.Proxied

V1 Browser automation

Browser is required on startup to fetch cookies. Breaks terms of service.

Installation

pip3 install revChatGPT

Configuration

  1. Create account on OpenAI's ChatGPT
  2. Save your email and password

Required configuration:

{
  "email": "<your email>",
  "password": "your password",
}

Optional configuration:

{
  "conversation_id": "UUID...",
  "parent_id": "UUID...",
  "proxy": "...",
  "paid": false
}
  1. Save this as $HOME/.config/revChatGPT/config.json

Usage

Command line

python3 -m revChatGPT.Unofficial

!help - Show this message
!reset - Forget the current conversation
!refresh - Refresh the session authentication
!config - Show the current configuration
!rollback x - Rollback the conversation (x being the number of messages to rollback)
!exit - Exit this program

Developer

from revChatGPT.Unofficial import Chatbot

chatbot = Chatbot({
  "email": "<your email>",
  "password": "your password"
}, conversation_id=None, parent_id=None) # You can start a custom conversation

response = chatbot.ask("Prompt", conversation_id=None, parent_id=None) # You can specify custom conversation and parent ids. Otherwise it uses the saved conversation (yes. conversations are automatically saved)

print(response)
# {
#   "message": message,
#   "conversation_id": self.conversation_id,
#   "parent_id": self.parent_id,
# }

Refer to wiki for advanced developer usage

API

python3 -m revChatGPT.GPTserver

HTTP POST request:

{
  "session_token": "eyJhbGciOiJkaXIiL...",
  "prompt": "Your prompt here"
}

Optional:

{
  "session_token": "eyJhbGciOiJkaXIiL...",
  "prompt": "Your prompt here",
  "conversation_id": "UUID...",
  "parent_id": "UUID..."
}
  • Rate limiting is enabled by default to prevent simultaneous requests

Awesome ChatGPT

My list

If you have a cool project you want added to the list, open an issue.

Disclaimers

This is not an official OpenAI product. This is a personal project and is not affiliated with OpenAI in any way. Don't sue me

Credits

chatgpt's People

Contributors

harry-jing avatar skippyyy avatar snowmeow2 avatar robbiebusinessacc avatar scottleibrand avatar diamonddemon669 avatar pyro1121 avatar jamminroot avatar monsterdruide1 avatar penut85420 avatar lss233 avatar ukenn2112 avatar superswan avatar lukaevet avatar viralrupani avatar zwa73 avatar jianwang-ntu avatar suzhiba avatar sunneydev avatar sunlanchang avatar monadmonami avatar ahmedivy avatar ewouth avatar amitmy avatar melroy89 avatar muharamdani avatar ritish134 avatar hunkim avatar viddesh1 avatar zero6992 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.