0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

自分用メモ:OpenAIのライブラリ使うと「TypeError: Client.__init__() got an unexpected keyword argument 'proxies'」が出る

Posted at

解決方法はこちら

httpxのバージョンが上がるとエラーになるという罠らしい。
バージョンを指定することでうまくいく。

!pip install httpx==0.27.2 

LangChainとLangGraphによるRAG・AIエージェント[実践]入門を参考にしてたら、タイミング悪かったのかこのエラーに遭遇。。

Google Colab内でやってるせいか、キャッシュかなんか残るのかな?
httpxのダウングレードだけでは解決しない。

import os
os.kill(os.getpid(), 9)

ここまでやらないとどうもバージョンが更新されないっぽいので注意。
プロセスをキルしてるので、OpenAIのAPIキーまでなかった事にされる。

同じように悩んでる人がいれば。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?