-
Notifications
You must be signed in to change notification settings - Fork 77
crash during parsing the json file #1
Comments
I encountered the same error. I believe it is caused by an authentication error thrown by the OpenAI API. I added the line
To me it looks like the authentication token generated by interceptor.js is somehow invalid (i dont have any expertise in js). Perhaps one of the developers can take a look into this. |
Hi @somenothing, @kenngkz! @AlexSua has been doing an amazing job improving the library. Changes in the OpenAI's backend broke the library but it is already working again. Now it can log in directly with an email and password. You can update the library with {
"email": "[email protected]",
"password": "xxx"
} |
It works! Thanks! |
It seems again to having a problem w/ login. I get "Login error. Try again or insert the token yourself." |
Just to add more context, I added all params (access_token, session) including email and password and it's failing again. |
This is mainly caused on the backend side of ChatGPT. It is having high traffic problems, which causes some login problems. Look carefully in the stacktrace and you will see that it sometimes is a refused connection, timeout, captcha prompt etc.
Again this is most likely also caused by the OpenAI backend, howevver, if you use it in a python lib you can login manually and make sure to set the config.json path:
You can also disable the config.json generation when creating a new session by disabling these lines, so you can check make sure that it will generate new keys and not load old ones: chatgpt-python/chatgpt/chatgpt.py Line 357 in f2d632b
chatgpt-python/chatgpt/chatgpt.py Line 404 in f2d632b
|
using python 3.10
my code was
I got
I stored the result of interceptor.js in
config.json
correcly before I run the code.It was
The text was updated successfully, but these errors were encountered: