Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +10 -8
requirements.txt
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
-
#
|
2 |
transformers==4.39.3
|
3 |
sentence-transformers==2.2.2
|
4 |
-
torch==1.13.1+cpu
|
5 |
-
-f https://download.pytorch.org/whl/torch_stable.html
|
6 |
|
7 |
-
#
|
|
|
|
|
|
|
|
|
8 |
langchain==0.1.13
|
9 |
langchain-community==0.0.30
|
10 |
|
11 |
-
# PDF handling
|
12 |
-
pdfminer.six==20221105
|
13 |
-
|
14 |
# Vector DB
|
15 |
chromadb==0.4.24
|
16 |
|
17 |
-
#
|
|
|
|
|
|
|
18 |
streamlit==1.32.2
|
|
|
1 |
+
# Required LLM & Transformers
|
2 |
transformers==4.39.3
|
3 |
sentence-transformers==2.2.2
|
|
|
|
|
4 |
|
5 |
+
# Force Torch CPU version (Hugging Face compatible)
|
6 |
+
torch==1.13.1
|
7 |
+
-f https://download.pytorch.org/whl/cpu/torch_stable.html
|
8 |
+
|
9 |
+
# LangChain ecosystem
|
10 |
langchain==0.1.13
|
11 |
langchain-community==0.0.30
|
12 |
|
|
|
|
|
|
|
13 |
# Vector DB
|
14 |
chromadb==0.4.24
|
15 |
|
16 |
+
# PDF handling
|
17 |
+
pdfminer.six==20221105
|
18 |
+
|
19 |
+
# Web UI
|
20 |
streamlit==1.32.2
|