mohitrulzz commited on
Commit
b6bc1a1
·
verified ·
1 Parent(s): da3ff3f

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +42 -11
requirements.txt CHANGED
@@ -1,11 +1,42 @@
1
- gradio
2
- transformers
3
- torch
4
- sentence-transformers
5
- pdfplumber
6
- python-docx
7
- duckduckgo-search
8
- pandas
9
- fpdf
10
- qrcode[pil]
11
- pillow
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core Dependencies
2
+ gradio>=4.0.0
3
+ pandas>=1.5.0
4
+ numpy>=1.24.0
5
+ torch>=2.0.0
6
+ transformers>=4.30.0
7
+ sentence-transformers>=2.2.0
8
+ scikit-learn>=1.3.0
9
+
10
+ # File Processing
11
+ pdfplumber>=0.9.0
12
+ python-docx>=0.8.11
13
+
14
+ # PDF Generation
15
+ fpdf2>=2.7.0
16
+
17
+ # Web Search (Note: duckduckgo-search may need specific version)
18
+ duckduckgo-search>=3.8.0
19
+
20
+ # Async HTTP (for enhanced web search)
21
+ aiohttp>=3.8.0
22
+
23
+ # System Monitoring (optional)
24
+ psutil>=5.9.0
25
+
26
+ # Database
27
+ # sqlite3 is included with Python standard library
28
+
29
+ # Utilities
30
+ python-dateutil>=2.8.0
31
+ hashlib
32
+ # hashlib is included with Python standard library
33
+
34
+ # Development/Optional
35
+ jupyter>=1.0.0
36
+ matplotlib>=3.7.0
37
+ seaborn>=0.12.0
38
+
39
+ # Additional useful packages
40
+ tqdm>=4.65.0
41
+ logging
42
+ # logging is included with Python standard library