Update requirements.txt
Browse files- requirements.txt +15 -16
requirements.txt
CHANGED
|
@@ -1,20 +1,19 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
gradio==5.
|
| 3 |
-
uvicorn=
|
| 4 |
-
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
numpy==2.1.3
|
| 9 |
-
scikit-learn==1.5.2
|
| 10 |
-
python-dotenv==1.0.1
|
| 11 |
-
|
| 12 |
-
# Hugging Face + Model Integration
|
| 13 |
-
huggingface-hub==0.25.2
|
| 14 |
-
transformers==4.45.2
|
| 15 |
-
sentence-transformers==3.1.1
|
| 16 |
-
torch==2.4.1
|
| 17 |
faiss-cpu==1.8.0.post1
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
#
|
| 20 |
requests==2.32.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core runtime
|
| 2 |
+
gradio==5.49.1
|
| 3 |
+
uvicorn>=0.22.0
|
| 4 |
+
spaces
|
| 5 |
|
| 6 |
+
# ML & Vector memory
|
| 7 |
+
sentence-transformers==3.2.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
faiss-cpu==1.8.0.post1
|
| 9 |
+
numpy==1.26.4
|
| 10 |
+
pandas==2.2.2
|
| 11 |
+
torch==2.3.1
|
| 12 |
+
scikit-learn==1.5.2
|
| 13 |
|
| 14 |
+
# Networking & API
|
| 15 |
requests==2.32.3
|
| 16 |
+
python-dotenv==1.0.1
|
| 17 |
+
|
| 18 |
+
# Misc utils
|
| 19 |
+
tqdm==4.66.5
|