Update requirements.txt
Browse files- requirements.txt +16 -14
requirements.txt
CHANGED
|
@@ -1,24 +1,26 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
gradio[
|
| 3 |
-
uvicorn>=0.
|
| 4 |
-
fastapi>=0.
|
| 5 |
|
| 6 |
-
#
|
| 7 |
pandas>=2.2.2
|
| 8 |
numpy>=1.26.4
|
| 9 |
-
|
| 10 |
|
| 11 |
-
# Hugging Face +
|
| 12 |
-
|
| 13 |
-
hf-transfer>=0.1.4
|
| 14 |
-
transformers>=4.44.2
|
| 15 |
torch>=2.4.0
|
| 16 |
-
|
|
|
|
| 17 |
|
| 18 |
-
#
|
| 19 |
faiss-cpu>=1.8.0
|
| 20 |
sentence-transformers>=3.0.1
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
requests>=2.
|
| 24 |
python-dotenv>=1.0.1
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --- Core Framework ---
|
| 2 |
+
gradio[mcp,oauth]==5.49.1
|
| 3 |
+
uvicorn>=0.38.0
|
| 4 |
+
fastapi>=0.121.0
|
| 5 |
|
| 6 |
+
# --- Data & Core ---
|
| 7 |
pandas>=2.2.2
|
| 8 |
numpy>=1.26.4
|
| 9 |
+
scikit-learn>=1.5.1
|
| 10 |
|
| 11 |
+
# --- Hugging Face + Transformers ---
|
| 12 |
+
transformers>=4.57.1
|
|
|
|
|
|
|
| 13 |
torch>=2.4.0
|
| 14 |
+
huggingface-hub>=0.30.0
|
| 15 |
+
hf-transfer>=0.1.4
|
| 16 |
|
| 17 |
+
# --- AI & Embeddings ---
|
| 18 |
faiss-cpu>=1.8.0
|
| 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
|