Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +22 -0
requirements.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core UI
|
| 2 |
+
gradio==4.44.0
|
| 3 |
+
|
| 4 |
+
# OpenAI (legacy ChatCompletion/Embedding APIs used in your script)
|
| 5 |
+
openai==0.28.1
|
| 6 |
+
|
| 7 |
+
# Pinecone v5 client (matches: `from pinecone import Pinecone`)
|
| 8 |
+
pinecone-client>=5.0.0
|
| 9 |
+
|
| 10 |
+
# Data / graphs
|
| 11 |
+
pandas==2.2.2
|
| 12 |
+
numpy==1.26.4
|
| 13 |
+
networkx==3.3
|
| 14 |
+
|
| 15 |
+
# Server/runtime deps (gradio pulls most, but these help on Spaces)
|
| 16 |
+
uvicorn==0.30.6
|
| 17 |
+
httpx==0.27.2
|
| 18 |
+
pydantic==2.9.2
|
| 19 |
+
python-multipart==0.0.9
|
| 20 |
+
|
| 21 |
+
# Fix for "ModuleNotFoundError: No module named 'websockets.asyncio'"
|
| 22 |
+
websockets==14
|