Update requirements.txt
Browse files# === Core App / Web Stack ===
gradio[mcp,oauth]==5.49.1
fastapi==0.115.5
uvicorn==0.31.1
starlette==0.49.3
spaces==0.42.1
python-dotenv==1.0.1
filelock==3.16.1
# === Vector Search + Embeddings ===
faiss-cpu==1.8.0.post1
sentence-transformers==3.2.0
numpy==1.26.4
scipy==1.13.1
pandas==2.2.2
scikit-learn==1.5.2
# === Transformers + Hugging Face Integration ===
transformers==4.45.2
tokenizers==0.20.3
huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1
# === Visualization + Utilities ===
matplotlib==3.9.2
tqdm==4.66.5
requests==2.32.3
tenacity==8.4.1
joblib==1.4.2
- requirements.txt +28 -58
requirements.txt
CHANGED
|
@@ -1,58 +1,28 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
+
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
-#
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
-scikit-learn==1.5.2
|
| 30 |
-
-scipy==1.13.1
|
| 31 |
-
-matplotlib==3.9.2
|
| 32 |
-
-
|
| 33 |
-
-# Utility + Runtime
|
| 34 |
-
-tqdm==4.66.5
|
| 35 |
-
-requests==2.32.3
|
| 36 |
-
-tenacity==8.4.1
|
| 37 |
-
-joblib==1.4.2
|
| 38 |
-
+filelock==3.16.1
|
| 39 |
-
+
|
| 40 |
-
+# Vector search + Embeddings
|
| 41 |
-
+faiss-cpu==1.8.0.post1
|
| 42 |
-
+sentence-transformers==3.2.0
|
| 43 |
-
+numpy==1.26.4
|
| 44 |
-
+scipy==1.13.1
|
| 45 |
-
+pandas==2.2.2
|
| 46 |
-
+scikit-learn==1.5.2
|
| 47 |
-
+
|
| 48 |
-
+# Transformers + Hugging Face integration
|
| 49 |
-
+transformers==4.45.2
|
| 50 |
-
+tokenizers==0.20.3
|
| 51 |
-
+huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1
|
| 52 |
-
+
|
| 53 |
-
+# Visualization + utilities
|
| 54 |
-
+matplotlib==3.9.2
|
| 55 |
-
+tqdm==4.66.5
|
| 56 |
-
+requests==2.32.3
|
| 57 |
-
+tenacity==8.4.1
|
| 58 |
-
+joblib==1.4.2
|
|
|
|
| 1 |
+
# === Core App / Web Stack ===
|
| 2 |
+
gradio[mcp,oauth]==5.49.1
|
| 3 |
+
fastapi==0.115.5
|
| 4 |
+
uvicorn==0.31.1
|
| 5 |
+
starlette==0.49.3
|
| 6 |
+
spaces==0.42.1
|
| 7 |
+
python-dotenv==1.0.1
|
| 8 |
+
filelock==3.16.1
|
| 9 |
+
|
| 10 |
+
# === Vector Search + Embeddings ===
|
| 11 |
+
faiss-cpu==1.8.0.post1
|
| 12 |
+
sentence-transformers==3.2.0
|
| 13 |
+
numpy==1.26.4
|
| 14 |
+
scipy==1.13.1
|
| 15 |
+
pandas==2.2.2
|
| 16 |
+
scikit-learn==1.5.2
|
| 17 |
+
|
| 18 |
+
# === Transformers + Hugging Face Integration ===
|
| 19 |
+
transformers==4.45.2
|
| 20 |
+
tokenizers==0.20.3
|
| 21 |
+
huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1
|
| 22 |
+
|
| 23 |
+
# === Visualization + Utilities ===
|
| 24 |
+
matplotlib==3.9.2
|
| 25 |
+
tqdm==4.66.5
|
| 26 |
+
requests==2.32.3
|
| 27 |
+
tenacity==8.4.1
|
| 28 |
+
joblib==1.4.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|