Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +7 -5
requirements.txt
CHANGED
|
@@ -6,18 +6,20 @@ gradio_client==1.13.1
|
|
| 6 |
openai==0.28.1
|
| 7 |
|
| 8 |
# Pinecone v5 client (matches: `from pinecone import Pinecone`)
|
| 9 |
-
pinecone-client>=
|
| 10 |
|
| 11 |
# Data / graphs
|
| 12 |
pandas==2.2.2
|
| 13 |
numpy==1.26.4
|
| 14 |
networkx==3.3
|
| 15 |
|
| 16 |
-
# Server/runtime deps (gradio pulls most
|
| 17 |
uvicorn==0.30.6
|
| 18 |
httpx==0.27.2
|
| 19 |
pydantic==2.9.2
|
| 20 |
-
python-multipart==0.0.9
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
openai==0.28.1
|
| 7 |
|
| 8 |
# Pinecone v5 client (matches: `from pinecone import Pinecone`)
|
| 9 |
+
pinecone-client>=6.0.0
|
| 10 |
|
| 11 |
# Data / graphs
|
| 12 |
pandas==2.2.2
|
| 13 |
numpy==1.26.4
|
| 14 |
networkx==3.3
|
| 15 |
|
| 16 |
+
# Server/runtime deps (gradio pulls most; these are safe)
|
| 17 |
uvicorn==0.30.6
|
| 18 |
httpx==0.27.2
|
| 19 |
pydantic==2.9.2
|
|
|
|
| 20 |
|
| 21 |
+
# This must be >= 0.0.18 to satisfy FastAPI/Gradio
|
| 22 |
+
python-multipart>=0.0.18
|
| 23 |
+
|
| 24 |
+
# You asked for 14+; keep it under 15 to avoid surprise breaking changes
|
| 25 |
+
websockets>=14,<15
|