Update requirements.txt
Browse files- requirements.txt +9 -11
requirements.txt
CHANGED
|
@@ -1,29 +1,27 @@
|
|
| 1 |
-
#
|
| 2 |
gradio[mcp,oauth]==5.49.1
|
| 3 |
fastapi==0.121.0
|
| 4 |
uvicorn==0.31.1
|
| 5 |
starlette==0.49.3
|
| 6 |
spaces==0.42.1
|
|
|
|
| 7 |
|
| 8 |
-
#
|
| 9 |
sentence-transformers==3.2.0
|
| 10 |
faiss-cpu==1.8.0.post1
|
| 11 |
-
transformers==4.
|
| 12 |
tokenizers==0.21.4
|
|
|
|
| 13 |
|
| 14 |
-
#
|
| 15 |
-
pandas==2.2.2
|
| 16 |
numpy==1.26.4
|
|
|
|
| 17 |
scikit-learn==1.5.2
|
| 18 |
scipy==1.13.1
|
| 19 |
matplotlib==3.9.2
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
huggingface-hub==0.26.0 # keep <1.0 to satisfy transformers/tokenizers
|
| 23 |
-
python-dotenv==1.0.1
|
| 24 |
-
|
| 25 |
-
# === Reliability / Utils ===
|
| 26 |
-
joblib==1.4.2
|
| 27 |
tqdm==4.66.5
|
| 28 |
requests==2.32.3
|
| 29 |
tenacity==8.4.1
|
|
|
|
|
|
| 1 |
+
# Core app & UI
|
| 2 |
gradio[mcp,oauth]==5.49.1
|
| 3 |
fastapi==0.121.0
|
| 4 |
uvicorn==0.31.1
|
| 5 |
starlette==0.49.3
|
| 6 |
spaces==0.42.1
|
| 7 |
+
python-dotenv==1.0.1
|
| 8 |
|
| 9 |
+
# Vector learning & AI stack
|
| 10 |
sentence-transformers==3.2.0
|
| 11 |
faiss-cpu==1.8.0.post1
|
| 12 |
+
transformers==4.46.2
|
| 13 |
tokenizers==0.21.4
|
| 14 |
+
huggingface-hub==0.36.2
|
| 15 |
|
| 16 |
+
# Numerical + analytics
|
|
|
|
| 17 |
numpy==1.26.4
|
| 18 |
+
pandas==2.2.2
|
| 19 |
scikit-learn==1.5.2
|
| 20 |
scipy==1.13.1
|
| 21 |
matplotlib==3.9.2
|
| 22 |
|
| 23 |
+
# Utils
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
tqdm==4.66.5
|
| 25 |
requests==2.32.3
|
| 26 |
tenacity==8.4.1
|
| 27 |
+
joblib==1.4.2
|