Reverse Engineered ChatGPT API by OpenAI. Extensible for chatbots etc.
Make a pull request and fix my bad code.
or
If you need a private proxy server, it is available for $15 per month. The proceeds will be used to fund the public proxy. The purchase is available in BMC linked above. Remember to cancel it after a month since the official API will be out soon.
pip3 install revChatGPT
- Create account on OpenAI's ChatGPT
- Save your email and password
Not supported for Google/Microsoft accounts
{
"email": "email",
"password": "your password"
}
Comes from cookies on chat.openai.com as "__Secure-next-auth.session-token"
{
"session_token": "..."
}
https://chat.openai.com/api/auth/session
{
"access_token": "<access_token>"
}
{
"conversation_id": "UUID...",
"parent_id": "UUID...",
"proxy": "...",
"paid": false
}
- Save this as
$HOME/.config/revChatGPT/config.json
- If you are using Windows, you will need to create an environment variable named
HOME
and set it to your home profile for the script to be able to locate the config.json file.
python3 -m revChatGPT.V1
!help - Show this message
!reset - Forget the current conversation
!config - Show the current configuration
!rollback x - Rollback the conversation (x being the number of messages to rollback)
!exit - Exit this program
from revChatGPT.V1 import Chatbot
chatbot = Chatbot(config={
"email": "<your email>",
"password": "<your password>"
})
print("Chatbot: ")
prev_text = ""
for data in chatbot.ask(
"Hello world",
):
message = data["message"][len(prev_text) :]
print(message, end="", flush=True)
prev_text = data["message"]
print()
from revChatGPT.V1 import Chatbot
chatbot = Chatbot(config={
"email": "<your email>",
"password": "<your password>"
})
prompt = "how many beaches does portugal have?"
response = ""
for data in chatbot.ask(
prompt
):
response = data["message"]
print(response)
Refer to the wiki for advanced developer usage.
If you have a cool project you want added to the list, open an issue.
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
- virtualharby - Memes for emotional support
- All contributors - Pull requests