I got reports of OpenAI changing their API method, nothing is changed, they just added some extra headers (Check out ./Classes/chat.py)
If you want me to maintain this repo, please star ⭐️
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.
- Proxy Support
- Automatically login without involving a browser
- Automatically grab Access Token
- Get around the login captcha (If you try to log in subsequently, you will be prompted to solve a captcha)
- Saves the access token to a file, so you don't have to log in again
- Automatically refreshes the access token when it expires
- Uses colorama to colorize the output, because why not?
- Smart Conversation Tracking
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.
- Added conversation tracking (thanks to @yeeyangtee)
- Added a nice looking spinner when the script is waiting for a response from the API
- Clone the repository
- Install the requirements using
pip install -r requirements.txt
- Open
config.json
and enter your email and password. - Run
main.py
and let the script do the rest.
If the token creation process is failing, on main.py
on line 40
- Try to use a proxy (I recommend using this always)
Auth.OpenAIAuth(email_address=email, password=password, use_proxy=True, proxy="http://127.0.0.0:8080")
- Don't try to log in too fast. At least wait 10 minutes if you're being rate limited.
- If you're still having issues, try to use a VPN. On a VPN, the script should work fine.
I'm planning to add a few more features, such as:
- A python module that can be imported and used in other projects
- A way to save the conversation
- Better error handling
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.
- OpenAI for creating the ChatGPT API
- FlorianREGAZ for the TLS Client