Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +38 -1
requirements.txt
CHANGED
|
@@ -1,3 +1,40 @@
|
|
| 1 |
altair
|
| 2 |
pandas
|
| 3 |
-
streamlit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
altair
|
| 2 |
pandas
|
| 3 |
+
streamlit
|
| 4 |
+
|
| 5 |
+
# Core web framework
|
| 6 |
+
streamlit>=1.28.0
|
| 7 |
+
streamlit-js-eval>=0.1.5
|
| 8 |
+
|
| 9 |
+
# AI/ML models and APIs
|
| 10 |
+
transformers>=4.35.0
|
| 11 |
+
torch>=2.0.0
|
| 12 |
+
openai>=1.0.0
|
| 13 |
+
groq>=0.3.0
|
| 14 |
+
requests>=2.31.0
|
| 15 |
+
|
| 16 |
+
# Database
|
| 17 |
+
sqlalchemy>=2.0.0
|
| 18 |
+
psycopg2-binary>=2.9.0
|
| 19 |
+
alembic>=1.12.0 # For database migrations
|
| 20 |
+
|
| 21 |
+
# File processing
|
| 22 |
+
pymupdf>=1.23.0
|
| 23 |
+
python-pptx>=0.6.21
|
| 24 |
+
python-docx>=1.1.0
|
| 25 |
+
|
| 26 |
+
# PDF generation
|
| 27 |
+
reportlab>=4.0.0
|
| 28 |
+
|
| 29 |
+
# Environment and utilities
|
| 30 |
+
python-dotenv>=1.0.0
|
| 31 |
+
sentencepiece>=0.1.99 # For tokenization
|
| 32 |
+
|
| 33 |
+
# Data analysis and visualization (for research dashboard)
|
| 34 |
+
pandas>=2.0.0
|
| 35 |
+
plotly>=5.15.0
|
| 36 |
+
numpy>=1.24.0
|
| 37 |
+
|
| 38 |
+
# Additional utilities
|
| 39 |
+
uuid>=1.30.0
|
| 40 |
+
pillow>=10.0.0 # For image processing if needed
|