Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +23 -9
requirements.txt
CHANGED
|
@@ -1,15 +1,29 @@
|
|
| 1 |
-
#
|
| 2 |
-
aiofiles>=24.1.0
|
| 3 |
-
unstructured[md]
|
| 4 |
gradio>=5.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# Vector Database
|
| 7 |
chromadb
|
| 8 |
langchain-chroma
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
torch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Dependencies
|
|
|
|
|
|
|
| 2 |
gradio>=5.0.0
|
| 3 |
+
python-dotenv
|
| 4 |
+
|
| 5 |
+
# LangChain Core
|
| 6 |
+
langchain>=0.1.0
|
| 7 |
+
langchain-core>=0.1.0
|
| 8 |
+
langchain-community>=0.0.20
|
| 9 |
+
|
| 10 |
+
# HuggingFace Integration
|
| 11 |
+
langchain-huggingface
|
| 12 |
+
huggingface-hub
|
| 13 |
+
sentence-transformers
|
| 14 |
|
| 15 |
# Vector Database
|
| 16 |
chromadb
|
| 17 |
langchain-chroma
|
| 18 |
|
| 19 |
+
# Document Processing
|
| 20 |
+
unstructured[md]
|
| 21 |
+
markdown
|
| 22 |
+
|
| 23 |
+
# PyTorch (CPU version for deployment)
|
| 24 |
+
torch
|
| 25 |
+
torchvision
|
| 26 |
+
torchaudio
|
| 27 |
+
|
| 28 |
+
# Additional dependencies for unstructured
|
| 29 |
+
aiofiles>=24.1.0
|