ChatGPT is a reverse engineering of OpenAI's ChatGPT API
Project description
ChatGPT
Reverse Engineered ChatGPT by OpenAI. Extensible for chatbots etc.
Note: This is a proof of concept. The goal here is to be able to write bots using the API.
Features
- Scientific knowledge
- Has memory. It remembers the chat history and context
- No moderation
- Programmable
Setup
Install
pip3 install revChatGPT
Get your Bearer token
Go to https://chat.openai.com/chat and log in or sign up
- Open console with
F12
- Go to Network tab in console
- Find session request (Might need refresh)
- Copy accessToken value to config.json.example as Authorization
- Save as config.json (In current active directory)
Running
python3 -m revChatGPT
Development:
pip3 install revChatGPT
from revChatGPT.revChatGPT import Chatbot
import json
# Get your config in JSON
config = {
"Authorization": "<Your Bearer Token Here>"
}
chatbot = Chatbot(config, conversation_id=None)
prompt = "<Some prompt>"
response = chatbot.get_chat_response(prompt)
print(response["message"])
print(response["conversation_id"])
print(response["parent_id"])
This can be imported to projects for bots and much more. You can have multiple independent conversations by keeping track of the conversation_id.
Known issues
- Access token expires in one hour
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
revChatGPT-0.0.7.tar.gz
(9.8 kB
view hashes)
Built Distribution
revChatGPT-0.0.7-py3-none-any.whl
(10.5 kB
view hashes)
Close
Hashes for revChatGPT-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 269716e47a8075bdd56fa25fe2765ddb4139ed89e4ca21e5e4ff2defa8a30218 |
|
MD5 | fa34094c1b28c251829ea15d1d6ffd46 |
|
BLAKE2b-256 | 8e12ba69b73cb629374d497743e76eeca543bbfdf515416dee43e95975a97584 |