Update requirements.txt
Browse files- requirements.txt +42 -11
requirements.txt
CHANGED
@@ -1,11 +1,42 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|