Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +37 -0
requirements.txt
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Environment variable management
|
| 2 |
+
python-dotenv>=1.0.0
|
| 3 |
+
|
| 4 |
+
# Encryption for secure data handling
|
| 5 |
+
cryptography>=42.0.0
|
| 6 |
+
|
| 7 |
+
# Salesforce integration
|
| 8 |
+
simple-salesforce>=1.12.5
|
| 9 |
+
|
| 10 |
+
# NLP models for summarization
|
| 11 |
+
transformers>=4.35.0
|
| 12 |
+
|
| 13 |
+
# Sentence embeddings for aspect-based summarization
|
| 14 |
+
sentence-transformers>=2.2.2
|
| 15 |
+
|
| 16 |
+
# Image processing for OCR
|
| 17 |
+
pillow>=10.0.0
|
| 18 |
+
|
| 19 |
+
# OCR for text extraction from images and scanned PDFs
|
| 20 |
+
pytesseract>=0.3.10
|
| 21 |
+
|
| 22 |
+
# Data handling and report generation
|
| 23 |
+
pandas>=2.0.0
|
| 24 |
+
numpy>=1.24.0
|
| 25 |
+
|
| 26 |
+
# Document processing for DOCX files
|
| 27 |
+
python-docx>=1.1.0
|
| 28 |
+
|
| 29 |
+
# PDF processing
|
| 30 |
+
PyPDF2>=3.0.0
|
| 31 |
+
pdf2image>=1.16.0
|
| 32 |
+
|
| 33 |
+
# Web-based UI for user interaction
|
| 34 |
+
gradio>=4.0.0
|
| 35 |
+
|
| 36 |
+
# Deep learning framework for NLP models
|
| 37 |
+
torch>=2.0.0
|