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.9.tar.gz
(10.0 kB
view hashes)
Built Distribution
revChatGPT-0.0.9-py3-none-any.whl
(10.7 kB
view hashes)
Close
Hashes for revChatGPT-0.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25bdf3de638b55f7a9ca93ea898ed3e47587e0f6c701de8a0dbd00c6d4259974 |
|
MD5 | 62d9b20bcd199388fb720a51ea431bd7 |
|
BLAKE2b-256 | 3118ad4cb408064756ba035cd3820d9dc056667f2094ae0d4cc6a1fbb6601bf6 |