-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Action failing: Client.__init__() got an unexpected keyword argument 'proxies' #9
Comments
@MatteoEgmont I am getting the same issue, looks like it is a issue with HTTPX per the OpenAI issue here. The pyproject.toml from the repo shows that HTTPX floats (httpx>=0.23.0, <1) with httpx 0.28.0 being released 12 hours ago. The error is due to a deprecation of the "proxies" argument and will require this action to be updated for a new version of OpenAI library. Here is the change log from HTTPX release. 0.28.0 (28th November, 2024) Deprecations: We are working towards a simplified SSL configuration API. For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated... The verify argument as a string argument is now deprecated and will raise warnings. The following changes are also included: The deprecated proxies argument has now been removed. |
first terminate your kernal |
I believe this will be fixed if we start using a later version of |
Using the latest openai module brings in updated dependencies that address #9
Using the latest openai module brings in updated dependencies that address #9.
Using the latest openai module brings in updated dependencies that address #9.
!pip install httpx==0.23.0 worked for me. Thanks. |
@aditiphadnis did you try using the latest version of the Action? |
Hi!
We are starting receiving this kind of error since ca. half an hour ago
It might be related to the latest bump in
httpx
to 0.28.0, encode/httpx#3419, which is the only noticeable difference between previous successful runs and the ones failing.The text was updated successfully, but these errors were encountered: