Pin httpx<0.28.0 to fix openai proxies incompatibility
Browse filesopenai passes proxies= to httpx internally; httpx>=0.28 dropped that
parameter. Pinning httpx<0.28.0 is the definitive fix.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- requirements.txt +1 -0
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
streamlit==1.39.0
|
| 2 |
openai>=1.55.0
|
|
|
|
| 3 |
pymupdf==1.24.10
|
| 4 |
pytesseract==0.3.13
|
| 5 |
Pillow==10.4.0
|
|
|
|
| 1 |
streamlit==1.39.0
|
| 2 |
openai>=1.55.0
|
| 3 |
+
httpx<0.28.0
|
| 4 |
pymupdf==1.24.10
|
| 5 |
pytesseract==0.3.13
|
| 6 |
Pillow==10.4.0
|