Update requirements.txt
Browse files- requirements.txt +19 -13
requirements.txt
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
streamlit>=1.22.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
sentence-transformers>=2.2.2
|
| 3 |
transformers>=4.28.1
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
scikit-learn>=1.2.2
|
| 9 |
-
pymupdf>=1.22.5
|
| 10 |
python-docx>=0.8.11
|
| 11 |
-
|
| 12 |
-
|
| 13 |
openai>=1.0.0
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
PyPDF2
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
numpy>=1.24.0
|
| 3 |
+
torch>=2.0.0
|
| 4 |
streamlit>=1.22.0
|
| 5 |
+
fastapi>=0.95.0
|
| 6 |
+
uvicorn>=0.22.0
|
| 7 |
+
python-dotenv>=0.20.0
|
| 8 |
+
pydantic>=1.10.0
|
| 9 |
+
|
| 10 |
+
# Embedding and vector search
|
| 11 |
sentence-transformers>=2.2.2
|
| 12 |
transformers>=4.28.1
|
| 13 |
+
faiss-cpu==1.7.4
|
| 14 |
+
|
| 15 |
+
# Document processing
|
| 16 |
+
PyPDF2>=3.0.0
|
|
|
|
|
|
|
| 17 |
python-docx>=0.8.11
|
| 18 |
+
|
| 19 |
+
# LLM integration (optional)
|
| 20 |
openai>=1.0.0
|
| 21 |
+
|
| 22 |
+
# Utilities
|
| 23 |
+
tqdm>=4.65.0
|
| 24 |
+
requests>=2.28.0
|
|
|