Commit
·
bdfe118
1
Parent(s):
1eb9551
Fixed scipy version for gensim compatibility1
Browse files- requirements.txt +10 -5
requirements.txt
CHANGED
@@ -1,15 +1,20 @@
|
|
|
|
1 |
flask==3.0.2
|
2 |
torch==2.2.2
|
3 |
transformers==4.40.1
|
4 |
sentence-transformers==2.7.0
|
5 |
-
opencv-python==4.9.0.80
|
|
|
|
|
6 |
numpy==1.24.4
|
|
|
|
|
|
|
|
|
7 |
Pillow==9.4.0
|
8 |
chromadb==0.4.6
|
9 |
PyMuPDF==1.24.12
|
10 |
nltk==3.8.1
|
11 |
-
gensim==4.3.2
|
12 |
-
# language-tool-python==2.8
|
13 |
pyspellchecker==0.8.1
|
14 |
-
|
15 |
-
|
|
|
1 |
+
# Core dependencies
|
2 |
flask==3.0.2
|
3 |
torch==2.2.2
|
4 |
transformers==4.40.1
|
5 |
sentence-transformers==2.7.0
|
6 |
+
opencv-python-headless==4.9.0.80
|
7 |
+
|
8 |
+
# Specific versions for scipy/numpy/gensim compatibility
|
9 |
numpy==1.24.4
|
10 |
+
scipy==1.10.1
|
11 |
+
gensim==4.3.1
|
12 |
+
|
13 |
+
# Other dependencies
|
14 |
Pillow==9.4.0
|
15 |
chromadb==0.4.6
|
16 |
PyMuPDF==1.24.12
|
17 |
nltk==3.8.1
|
|
|
|
|
18 |
pyspellchecker==0.8.1
|
19 |
+
# language-tool-python==2.8
|
20 |
+
werkzeug==3.0.0
|