mgbam commited on
Commit
a5d1fe4
·
verified ·
1 Parent(s): ee99d0b

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +14 -17
requirements.txt CHANGED
@@ -1,16 +1,16 @@
1
  # ----------------------------------------------------------------------------
2
- # Requirements for Project Chimera v2.1
3
  #
4
- # To install all dependencies, run:
5
- # pip install -r requirements.txt
6
  # ----------------------------------------------------------------------------
7
 
8
  # Core web framework and UI
9
  gradio==4.31.5
10
 
11
- # Hugging Face client for AI model interaction
12
- huggingface-hub==0.23.1
13
- # The InferenceClient is part of the core huggingface_hub library now
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 # Image processing, also a dependency for others
32
- opencv-python==4.9.0.80 # Used for image data handling with Gradio
33
- pytesseract==0.3.10 # Optical Character Recognition (OCR) for images
34
- # Note: pytesseract requires a system-level installation of Google's Tesseract-OCR engine.
35
- # See: https://github.com/tesseract-ocr/tesseract
36
-
37
- # Machine Learning library (often a dependency for data analysis packages)
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