Update requirements.txt
Browse files- requirements.txt +5 -7
requirements.txt
CHANGED
|
@@ -1,26 +1,24 @@
|
|
| 1 |
-
#
|
| 2 |
gradio[mcp,oauth]==5.49.1
|
| 3 |
-
fastapi==0.
|
| 4 |
uvicorn==0.31.1
|
| 5 |
starlette==0.41.2
|
| 6 |
spaces==0.42.1
|
| 7 |
python-dotenv==1.0.1
|
| 8 |
filelock==3.16.1
|
| 9 |
|
| 10 |
-
#
|
| 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
|
| 22 |
-
|
| 23 |
-
# === Visualization + Utilities ===
|
| 24 |
matplotlib==3.9.2
|
| 25 |
tqdm==4.66.5
|
| 26 |
requests==2.32.3
|
|
|
|
| 1 |
+
# Core runtime
|
| 2 |
gradio[mcp,oauth]==5.49.1
|
| 3 |
+
fastapi==0.115.5
|
| 4 |
uvicorn==0.31.1
|
| 5 |
starlette==0.41.2
|
| 6 |
spaces==0.42.1
|
| 7 |
python-dotenv==1.0.1
|
| 8 |
filelock==3.16.1
|
| 9 |
|
| 10 |
+
# Vector memory + embeddings
|
| 11 |
faiss-cpu==1.8.0.post1
|
| 12 |
sentence-transformers==3.2.0
|
| 13 |
+
|
| 14 |
+
# ML + utils
|
| 15 |
numpy==1.26.4
|
| 16 |
scipy==1.13.1
|
| 17 |
pandas==2.2.2
|
| 18 |
scikit-learn==1.5.2
|
|
|
|
|
|
|
| 19 |
transformers==4.45.2
|
| 20 |
tokenizers==0.20.3
|
| 21 |
huggingface-hub==0.33.5
|
|
|
|
|
|
|
| 22 |
matplotlib==3.9.2
|
| 23 |
tqdm==4.66.5
|
| 24 |
requests==2.32.3
|