Update requirements.txt
Browse files- requirements.txt +7 -7
requirements.txt
CHANGED
|
@@ -1,30 +1,30 @@
|
|
| 1 |
-
#
|
| 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 |
|
| 9 |
-
#
|
| 10 |
sentence-transformers==3.2.0
|
| 11 |
faiss-cpu==1.8.0.post1
|
| 12 |
|
| 13 |
-
#
|
| 14 |
transformers==4.45.2
|
| 15 |
tokenizers==0.20.3
|
| 16 |
-
huggingface-hub==0.24.
|
| 17 |
|
| 18 |
-
#
|
| 19 |
numpy==1.26.4
|
| 20 |
pandas==2.2.2
|
| 21 |
scikit-learn==1.5.2
|
| 22 |
scipy==1.13.1
|
| 23 |
matplotlib==3.9.2
|
| 24 |
|
| 25 |
-
#
|
| 26 |
tqdm==4.66.5
|
| 27 |
requests==2.32.3
|
| 28 |
tenacity==8.4.1
|
| 29 |
joblib==1.4.2
|
| 30 |
-
filelock==3.13.1
|
|
|
|
| 1 |
+
# === Core Web + Gradio 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 |
+
# === Embeddings + Semantic Retrieval ===
|
| 11 |
sentence-transformers==3.2.0
|
| 12 |
faiss-cpu==1.8.0.post1
|
| 13 |
|
| 14 |
+
# === Transformers / HF Ecosystem ===
|
| 15 |
transformers==4.45.2
|
| 16 |
tokenizers==0.20.3
|
| 17 |
+
huggingface-hub==0.24.7
|
| 18 |
|
| 19 |
+
# === Analytics / Math ===
|
| 20 |
numpy==1.26.4
|
| 21 |
pandas==2.2.2
|
| 22 |
scikit-learn==1.5.2
|
| 23 |
scipy==1.13.1
|
| 24 |
matplotlib==3.9.2
|
| 25 |
|
| 26 |
+
# === Utilities ===
|
| 27 |
tqdm==4.66.5
|
| 28 |
requests==2.32.3
|
| 29 |
tenacity==8.4.1
|
| 30 |
joblib==1.4.2
|
|
|