From 39eba0e3948a9e6360ecb548a82b705e73ca0855 Mon Sep 17 00:00:00 2001 From: zzuhannn Date: Thu, 30 Apr 2026 20:56:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20openai=20=EB=B2=84=EC=A0=84=20=EC=97=85?= =?UTF-8?q?=EA=B7=B8=EB=A0=88=EC=9D=B4=EB=93=9C=20+=20httpx=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=ED=95=80=20(proxies=20=ED=98=B8=ED=99=98=EC=84=B1?= =?UTF-8?q?=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit openai==1.50.0이 httpx>=0.28과 호환되지 않아 Client 초기화 시 TypeError: got an unexpected keyword argument 'proxies' 발생. - openai 1.50.0 -> 1.55.3 (최신 안정 버전) - httpx==0.27.2 명시 (proxies 인자 호환 마지막 메이저 버전) --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 87b9cd7..aeed17a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ fastapi==0.115.0 uvicorn[standard]==0.30.0 -openai==1.50.0 +openai==1.55.3 +httpx==0.27.2 pydantic==2.9.0 pydantic-settings==2.5.0 python-dotenv==1.0.1