Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +33 -3
requirements.txt
CHANGED
|
@@ -1,3 +1,33 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core LangChain Stack (0.2.x series - all compatible)
|
| 2 |
+
langchain==0.2.17
|
| 3 |
+
langchain-core
|
| 4 |
+
langchain-community
|
| 5 |
+
langchain-openai
|
| 6 |
+
langchain-chroma
|
| 7 |
+
|
| 8 |
+
# Vector Database
|
| 9 |
+
chromadb
|
| 10 |
+
|
| 11 |
+
# PDF Processing
|
| 12 |
+
pdfplumber
|
| 13 |
+
pymupdf
|
| 14 |
+
|
| 15 |
+
# Image Processing
|
| 16 |
+
pillow
|
| 17 |
+
|
| 18 |
+
# CLIP Embeddings
|
| 19 |
+
open-clip-torch
|
| 20 |
+
|
| 21 |
+
# PyTorch (CPU - see GPU notes below)
|
| 22 |
+
torch==2.1.2
|
| 23 |
+
torchvision
|
| 24 |
+
|
| 25 |
+
# Web Interface
|
| 26 |
+
streamlit
|
| 27 |
+
|
| 28 |
+
# Utilities
|
| 29 |
+
python-dotenv
|
| 30 |
+
openai
|
| 31 |
+
tqdm
|
| 32 |
+
numpy
|
| 33 |
+
requests
|