Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +8 -9
requirements.txt
CHANGED
|
@@ -1,22 +1,21 @@
|
|
| 1 |
-
# Core
|
| 2 |
streamlit>=1.38.0
|
| 3 |
python-dotenv>=1.0.1
|
| 4 |
|
| 5 |
-
# PDF
|
| 6 |
PyPDF2>=3.0.1
|
| 7 |
|
| 8 |
-
# Numerical
|
| 9 |
numpy>=1.26.4
|
| 10 |
scikit-learn>=1.5.2
|
| 11 |
|
| 12 |
-
# Local
|
| 13 |
sentence-transformers>=3.0.1
|
|
|
|
|
|
|
| 14 |
|
| 15 |
-
# Vector
|
| 16 |
faiss-cpu>=1.8.0
|
| 17 |
|
| 18 |
-
#
|
| 19 |
-
huggingface-hub>=0.25.0
|
| 20 |
-
|
| 21 |
-
# Streamlit chat UI helpers
|
| 22 |
streamlit-chat>=0.1.1
|
|
|
|
| 1 |
+
# --- Core App Framework ---
|
| 2 |
streamlit>=1.38.0
|
| 3 |
python-dotenv>=1.0.1
|
| 4 |
|
| 5 |
+
# --- PDF Parsing ---
|
| 6 |
PyPDF2>=3.0.1
|
| 7 |
|
| 8 |
+
# --- Numerical & Machine Learning ---
|
| 9 |
numpy>=1.26.4
|
| 10 |
scikit-learn>=1.5.2
|
| 11 |
|
| 12 |
+
# --- Local Embeddings / Hugging Face Integration ---
|
| 13 |
sentence-transformers>=3.0.1
|
| 14 |
+
huggingface-hub>=0.25.0
|
| 15 |
+
requests>=2.32.3
|
| 16 |
|
| 17 |
+
# --- Vector Search (Fast Indexing) ---
|
| 18 |
faiss-cpu>=1.8.0
|
| 19 |
|
| 20 |
+
# --- Chat Interface ---
|
|
|
|
|
|
|
|
|
|
| 21 |
streamlit-chat>=0.1.1
|