Update requirements.txt
Browse files- requirements.txt +14 -17
requirements.txt
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
# ----------------------------------------------------------------------------
|
2 |
-
# Requirements for Project Chimera v2.1
|
3 |
#
|
4 |
-
#
|
5 |
-
#
|
6 |
# ----------------------------------------------------------------------------
|
7 |
|
8 |
# Core web framework and UI
|
9 |
gradio==4.31.5
|
10 |
|
11 |
-
#
|
12 |
-
huggingface-hub
|
13 |
-
|
14 |
|
15 |
# Real-time web search for literature review
|
16 |
tavily-python==0.3.3
|
@@ -28,14 +28,11 @@ fpdf2==2.7.9
|
|
28 |
# Document parsing for data extraction
|
29 |
PyPDF2==3.0.1
|
30 |
python-docx==1.1.2
|
31 |
-
Pillow==10.3.0
|
32 |
-
opencv-python==4.9.0.80
|
33 |
-
pytesseract==0.3.10
|
34 |
-
# Note: pytesseract requires a system-level installation of
|
35 |
-
#
|
36 |
-
|
37 |
-
# Machine Learning library
|
38 |
-
scikit-learn==1.4.2
|
39 |
-
|
40 |
-
# Standard library for making HTTP requests (used by other libraries)
|
41 |
-
requests==2.31.0
|
|
|
1 |
# ----------------------------------------------------------------------------
|
2 |
+
# Requirements for Project Chimera v2.1 (Build-Fix)
|
3 |
#
|
4 |
+
# This version is designed to be compatible with standard cloud deployment
|
5 |
+
# environments, resolving dependency conflicts with base images.
|
6 |
# ----------------------------------------------------------------------------
|
7 |
|
8 |
# Core web framework and UI
|
9 |
gradio==4.31.5
|
10 |
|
11 |
+
# Let pip resolve these to avoid conflicts with the base image
|
12 |
+
huggingface-hub
|
13 |
+
requests
|
14 |
|
15 |
# Real-time web search for literature review
|
16 |
tavily-python==0.3.3
|
|
|
28 |
# Document parsing for data extraction
|
29 |
PyPDF2==3.0.1
|
30 |
python-docx==1.1.2
|
31 |
+
Pillow==10.3.0
|
32 |
+
opencv-python-headless==4.9.0.80 # Use headless version for servers
|
33 |
+
pytesseract==0.3.10
|
34 |
+
# Note: pytesseract requires a system-level installation of Tesseract-OCR.
|
35 |
+
# This must be handled by the deployment environment (e.g., in packages.txt).
|
36 |
+
|
37 |
+
# Machine Learning library
|
38 |
+
scikit-learn==1.4.2
|
|
|
|
|
|