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.
Related works
- API that scales: https://github.com/ChatGPT-Hackers/ChatGPT-API-server (By me as well)
- Lightweight version: https://github.com/acheong08/ChatGPT-lite (In collaboration with Pawan)
These are separate works and not part of this library
Usage
Installation
pip3 install --upgrade revChatGPT
Configuration
Refer to the setup guide for more information.
Usage
python3 -m revApiGPT
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
python3 -m revChatGPT
from revChatGPT.ChatGPT import Chatbot
chatbot = Chatbot({
"session_token": "<YOUR_TOKEN>"
}, 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,
# }
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
- rawandahmad698 - Reverse engineering Auth0
- FlorianREGAZ - TLS client
- PyRo1121 - Linting
- Harry-Jing - Async support
- Ukenn2112 - Documentation
- aliferouss19 - Logo
- All other contributors
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-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f06addb18ab3e5609de415ce26ad436fff07ac0c69f9156164e1249630ad7b8 |
|
MD5 | 46b71f289ca90fb751a020c81276197f |
|
BLAKE2b-256 | b2e1fe56600d385993087744abfe391cd4a288ad68ae7c6c612354af61edfee9 |