Create requirements.txt
Browse files- requirements.txt +13 -0
requirements.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
langchain>=0.1.0
|
| 3 |
+
chromadb>=0.4.18
|
| 4 |
+
pymupdf>=1.23.7 # PyMuPDF package
|
| 5 |
+
ollama>=0.1.5 # Python client for Ollama
|
| 6 |
+
|
| 7 |
+
# Vector embeddings and processing
|
| 8 |
+
numpy>=1.26.0
|
| 9 |
+
sentence-transformers>=2.2.2
|
| 10 |
+
|
| 11 |
+
# Optional but recommended for better performance
|
| 12 |
+
pillow>=10.1.0 # For image processing in PDFs
|
| 13 |
+
tiktoken>=0.5.1 # For token counting
|