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.8.tar.gz
(9.8 kB
view hashes)
Built Distribution
revChatGPT-0.0.8-py3-none-any.whl
(10.4 kB
view hashes)
Close
Hashes for revChatGPT-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91d12354c52fdb613d149ed5513c4d574ff40cd6270d58b6ee32dc3ed9b005cc |
|
MD5 | e91f1befba308a5ab5a55c0fcb6f4ffa |
|
BLAKE2b-256 | 73493412c272cdf2534cd71c608ea6f9c899b104dd526a1d03f53a7d686c5c9b |