Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +29 -2
requirements.txt
CHANGED
@@ -1,4 +1,31 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
torch>=2.0.0
|
3 |
transformers>=4.30.0
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Web Interface
|
2 |
+
gradio>=4.13.0
|
3 |
+
|
4 |
+
# Core Processing
|
5 |
+
numpy>=1.24.0
|
6 |
+
pandas>=2.0.0
|
7 |
+
|
8 |
+
# Web Scraping and Text Processing
|
9 |
+
beautifulsoup4>=4.12.0
|
10 |
+
requests>=2.31.0
|
11 |
+
lxml>=4.9.0
|
12 |
+
|
13 |
+
# NLP and Embeddings
|
14 |
+
sentence-transformers>=2.2.0
|
15 |
torch>=2.0.0
|
16 |
transformers>=4.30.0
|
17 |
+
|
18 |
+
# Utilities
|
19 |
+
python-dotenv>=1.0.0
|
20 |
+
tqdm>=4.65.0
|
21 |
+
|
22 |
+
# Logging and Monitoring
|
23 |
+
rich>=13.0.0
|
24 |
+
|
25 |
+
# Type Checking
|
26 |
+
typing-extensions>=4.7.0
|
27 |
+
|
28 |
+
# Optional: Development Tools
|
29 |
+
black>=23.0.0 # Code formatting
|
30 |
+
pylint>=2.17.0 # Code analysis
|
31 |
+
pytest>=7.4.0 # Testing
|