ChatGPT is a reverse engineering of OpenAI's ChatGPT API
Project description
ChatGPT
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.
This repository is updated highly frequently. Expect breaking changes. Always read docs and readme before updating or opening an issue
ChatGPT website version
Browser is required. Breaks terms of service.
Installation
pip3 install revChatGPT[unofficial]
Configuration
- Create account on OpenAI's ChatGPT
- Save your email and password
Required configuration:
{
"email": "<your email>",
"password": "your password"
}
Optional configuration:
{
"conversation_id": "UUID...",
"parent_id": "UUID...",
"proxy": "...",
}
- 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
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
Base model API
Update 2023/02/08: This model has been revoked by OpenAI. We are working towards a new model.
As a temporary workaround, set environment variable export GPT_ENGINE="text-davinci-003"
(Costs credit)
Update 2023/02/08: This model has been revoked by OpenAI. We are working towards a new model.
As a temporary workaround, set environment variable export GPT_ENGINE="text-davinci-003"
(Costs credit)
Installation
pip3 install revChatGPT
Setup
- Create account on OpenAI
- Go to https://platform.openai.com/account/api-keys
- Copy API key
Usage
Command line
python3 -m revChatGPT.Official --api_key API_KEY --stream
Awesome ChatGPT
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
- virtualharby - Memes for emotional support
- All contributors - Pull requests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for revChatGPT-1.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c08f2306d421b9ffd0b045f2098a213bbd46768e37eba3e0039d621806beb709 |
|
MD5 | b19af8082c1b4ee8eaccd1186bc33c6c |
|
BLAKE2b-256 | 2b0a35847369796294c8c0414e9a405b9e7cd62bb621269952872fe5cac45d13 |