Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +5 -7
requirements.txt
CHANGED
|
@@ -5,21 +5,19 @@ gradio_client==1.13.1
|
|
| 5 |
# OpenAI (legacy ChatCompletion/Embedding APIs used in your script)
|
| 6 |
openai==0.28.1
|
| 7 |
|
| 8 |
-
# Pinecone
|
| 9 |
-
pinecone
|
| 10 |
|
| 11 |
# Data / graphs
|
| 12 |
pandas==2.2.2
|
| 13 |
numpy==1.26.4
|
| 14 |
networkx==3.3
|
| 15 |
|
| 16 |
-
# Server/runtime deps
|
| 17 |
uvicorn==0.30.6
|
| 18 |
httpx==0.27.2
|
| 19 |
-
pydantic==2.
|
| 20 |
-
|
| 21 |
-
# This must be >= 0.0.18 to satisfy FastAPI/Gradio
|
| 22 |
python-multipart>=0.0.18
|
| 23 |
|
| 24 |
-
#
|
| 25 |
websockets>=14,<15
|
|
|
|
| 5 |
# OpenAI (legacy ChatCompletion/Embedding APIs used in your script)
|
| 6 |
openai==0.28.1
|
| 7 |
|
| 8 |
+
# Pinecone SDK (new package name; matches `from pinecone import Pinecone`)
|
| 9 |
+
pinecone>=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
|
| 17 |
uvicorn==0.30.6
|
| 18 |
httpx==0.27.2
|
| 19 |
+
pydantic==2.10.6
|
|
|
|
|
|
|
| 20 |
python-multipart>=0.0.18
|
| 21 |
|
| 22 |
+
# Fix for "ModuleNotFoundError: No module named 'websockets.asyncio'"
|
| 23 |
websockets>=14,<15
|