Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +14 -12
requirements.txt
CHANGED
|
@@ -2,22 +2,23 @@
|
|
| 2 |
gradio>=5.0.0
|
| 3 |
python-dotenv
|
| 4 |
|
| 5 |
-
# LangChain
|
| 6 |
-
langchain>=0.
|
| 7 |
-
langchain-core>=0.
|
| 8 |
-
langchain-community>=0.
|
|
|
|
| 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)
|
|
@@ -25,5 +26,6 @@ torch
|
|
| 25 |
torchvision
|
| 26 |
torchaudio
|
| 27 |
|
| 28 |
-
# Additional dependencies
|
| 29 |
-
aiofiles>=24.1.0
|
|
|
|
|
|
| 2 |
gradio>=5.0.0
|
| 3 |
python-dotenv
|
| 4 |
|
| 5 |
+
# LangChain - MUST include all these packages
|
| 6 |
+
langchain>=0.3.0
|
| 7 |
+
langchain-core>=0.3.0
|
| 8 |
+
langchain-community>=0.3.0
|
| 9 |
+
langchain-text-splitters>=0.3.0
|
| 10 |
|
| 11 |
# HuggingFace Integration
|
| 12 |
+
langchain-huggingface>=0.1.0
|
| 13 |
+
huggingface-hub>=0.20.0
|
| 14 |
+
sentence-transformers>=2.2.0
|
| 15 |
|
| 16 |
# Vector Database
|
| 17 |
+
chromadb>=0.4.0
|
| 18 |
+
langchain-chroma>=0.1.0
|
| 19 |
|
| 20 |
# Document Processing
|
| 21 |
+
unstructured[md]>=0.10.0
|
| 22 |
markdown
|
| 23 |
|
| 24 |
# PyTorch (CPU version for deployment)
|
|
|
|
| 26 |
torchvision
|
| 27 |
torchaudio
|
| 28 |
|
| 29 |
+
# Additional dependencies
|
| 30 |
+
aiofiles>=24.1.0
|
| 31 |
+
pydantic>=2.0.0
|