-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @kuangvic, I'm here to help you with any bugs, questions, or contributions you have. Let's work on this together! The error you're encountering, "TypeError: Client.init() got an unexpected keyword argument 'proxies'", is indeed related to a version issue with the pip install httpx==0.27.2 This should resolve the error you're experiencing with the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
Hey @kuangvic, I'm here to help you with any bugs, questions, or contributions you have. Let's work on this together!
The error you're encountering, "TypeError: Client.init() got an unexpected keyword argument 'proxies'", is indeed related to a version issue with the
httpx
library. A similar issue was reported, and the solution was to downgrade thehttpx
package to version 0.27.2. You can do this by running the following command:This should resolve the error you're experiencing with the
proxies
argument in thehttpx.Client
initialization [1][2].To continue talking to Dosu, mention @dosu.
Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | I…