addaweathers commited on
Commit
f732d40
·
verified ·
1 Parent(s): 9a13963

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -9
requirements.txt CHANGED
@@ -1,15 +1,29 @@
1
- # Critical versions for Gradio/Unstructured compatibility
2
- aiofiles>=24.1.0
3
- unstructured[md]
4
  gradio>=5.0.0
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  # Vector Database
7
  chromadb
8
  langchain-chroma
9
 
10
- # Remaining dependencies
11
- python-dotenv
12
- langchain-huggingface
13
- langchain-community
14
- sentence-transformers
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