rawandahmad698 / PyChatGPT
- четверг, 8 декабря 2022 г. в 00:35:56
⚡️ TLS-based ChatGPT API with auto token regeneration, conversation tracking, proxy support and more.
pip install chatgptpy --upgrade
action=next
to action=variant
, frequently. This library is now using action=variant
instead of action=next
to get the next response from the API.502 Bad Gateway
error.I have been looking for a way to interact with the new Chat GPT API, but most of the sources here on GitHub require you to have a Chromium instance running in the background. or by using the Web Inspector to grab Access Token manually.
No more. I have been able to reverse engineer the API and use a TLS client to mimic a real user, allowing the script to login without setting off any bot detection techniques by Auth0
Basically, the script logs in on your behalf, using a TLS client, then grabs the Access Token. It's pretty fast.
Chatting
Creating a token
You: Hi there, My name is Rawa
Chat GPT: Hello Rawa, nice to meet you. Is there something you would like to talk about or ask me? I'm here to help with any questions you may have.
You: great, now say my name like Heisenberg
Chat GPT: Sure, Rawa like Heisenberg. Is there anything else you would like to talk about? I'm here to help with any questions you may have.
You: Sorry I meant like the episode of Breaking Bad where Walter White says Heisenberg
Chat GPT: Ah, I see. In that case, you could try saying it like this: "My name is Rawa, like Heisenberg." This is a reference to the character Walter White from the TV show Breaking Bad, who often used the pseudonym "Heisenberg" when conducting illegal activities. The character was known for his cool and calculated demeanor, so saying your name like Heisenberg in this context would mean saying it with confidence and authority.
pip install chatgptpy --upgrade
That's it!
from pychatgpt import Chat
chat = Chat(email="email", password="password")
chat.cli_chat()
from pychatgpt import Chat
# Initializing the chat class will automatically log you in, check access_tokens
chat = Chat(email="email", password="password")
answer = chat.ask("Hello!")
from pychatgpt import Chat
chat = Chat(email="email", password="password", proxies="http://localhost:8080") # proxy is optional, type: str or dict
answer = chat.ask("Hello!")
from pychatgpt import OpenAI
# Manually set the token
OpenAI.Auth.save_access_token(access_token="", expiry=0)
# Get the token, expiry
access_token, expiry = OpenAI.Auth.get_access_token()
# Check if the token is valid
is_expired = OpenAI.Auth.token_expired() # Returns True or False
If the token creation process is failing:
I'm planning to add a few more features, such as:
First, I'd like to tell you that "just making http" requests is not going to be enough, Auth0 is smart, each process is guarded by a
state
token, which is a JWT token. This token is used to prevent CSRF attacks, and it's also used to prevent bots from logging in.
If you look at the auth.py
file, there are over nine functions, each one of them is responsible for a different task, and they all
work together to create a token for you. allow-redirects
played a huge role in this, as it allowed to navigate through the login process
I work at MeshMonitors.io, We make amazing tools (Check it out yo!). I decided not to spend too much time on this, but here we are, I have been able to reverse engineer the API and use a TLS client to mimic a real user, allowing the script to login without setting off any bot detection techniques by Auth0
No one has been able to do this, and I wanted to see if I could.