mdasad3617 commited on
Commit
d574795
·
verified ·
1 Parent(s): f723da0

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +6 -6
requirements.txt CHANGED
@@ -8,13 +8,13 @@ python-dotenv==1.0.0
8
  # PDF Processing
9
  pymupdf==1.23.7
10
 
11
- # Concurrent Processing
12
- concurrent-futures==3.4.0
13
 
14
  # Logging
15
- logging==0.5.1.2
16
 
17
- # Optional: For image processing and OCR
18
  pytesseract==0.3.10
19
  opencv-python-headless==4.8.1.78
20
 
@@ -22,10 +22,10 @@ opencv-python-headless==4.8.1.78
22
  sentencepiece==0.1.99
23
  sacremoses==0.1.1
24
 
25
- # Optional: Model caching and performance
26
  huggingface-hub==0.20.3
27
 
28
- # Optional: For advanced error tracking
29
  sentry-sdk==1.39.1
30
 
31
  # Development and Testing
 
8
  # PDF Processing
9
  pymupdf==1.23.7
10
 
11
+ # Concurrency (Python 3.10+ has built-in concurrent.futures)
12
+ # Remove explicit concurrent-futures package
13
 
14
  # Logging
15
+ # Use Python's built-in logging module
16
 
17
+ # Image Processing and OCR
18
  pytesseract==0.3.10
19
  opencv-python-headless==4.8.1.78
20
 
 
22
  sentencepiece==0.1.99
23
  sacremoses==0.1.1
24
 
25
+ # Hugging Face Integration
26
  huggingface-hub==0.20.3
27
 
28
+ # Error Tracking (Optional)
29
  sentry-sdk==1.39.1
30
 
31
  # Development and Testing