Update requirements.txt
Browse files- requirements.txt +17 -23
requirements.txt
CHANGED
|
@@ -1,26 +1,20 @@
|
|
| 1 |
-
#
|
| 2 |
-
gradio
|
| 3 |
-
uvicorn
|
| 4 |
-
fastapi
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
pandas
|
| 8 |
-
numpy
|
| 9 |
-
scikit-learn
|
|
|
|
| 10 |
|
| 11 |
-
#
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
sentence-transformers>=3.0.1
|
| 20 |
-
|
| 21 |
-
# --- Utilities ---
|
| 22 |
-
requests>=2.32.3
|
| 23 |
-
python-dotenv>=1.0.1
|
| 24 |
-
|
| 25 |
-
# --- Compatibility fix ---
|
| 26 |
-
pydantic>=2.0,<2.12
|
|
|
|
| 1 |
+
# Core UI & API Framework
|
| 2 |
+
gradio==5.2.0
|
| 3 |
+
uvicorn==0.30.6
|
| 4 |
+
fastapi==0.115.5
|
| 5 |
|
| 6 |
+
# Core Data + Model Utilities
|
| 7 |
+
pandas==2.2.3
|
| 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 |
+
# Reliability + Misc
|
| 20 |
+
requests==2.32.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|