CCockrum commited on
Commit
b108c4f
·
verified ·
1 Parent(s): e673788

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -13
requirements.txt CHANGED
@@ -1,13 +1,23 @@
1
- transformers
2
- huggingface_hub
3
- streamlit
4
- langchain_core
5
- langchain_community
6
- langchain_huggingface
7
- langchain_text_splitters
8
- accelerate
9
- watchdog
10
- tqdm
11
- spacy>=3.7.2,<3.8.0
12
- en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl
13
- langdetect
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Core dependencies
3
+ streamlit>=1.26.0
4
+ torch>=2.0.0
5
+ langdetect>=1.0.9
6
+
7
+ # LangChain components
8
+ langchain>=0.0.267
9
+ langchain-core>=0.0.12
10
+ langchain-huggingface>=0.0.1
11
+
12
+ # HuggingFace libraries
13
+ transformers>=4.30.0
14
+ huggingface-hub>=0.16.4
15
+ accelerate>=0.21.0
16
+
17
+ # API interaction
18
+ requests>=2.31.0
19
+
20
+ # Optional: For better performance with GPU
21
+ # Note: Comment these out if you're on CPU only and having issues
22
+ sentencepiece>=0.1.99
23
+ bitsandbytes>=0.41.0 # For model quantization if needed