Spaces:
Paused
Paused
Delete requirements.txt
Browse files- requirements.txt +0 -97
requirements.txt
DELETED
|
@@ -1,97 +0,0 @@
|
|
| 1 |
-
# ============================================
|
| 2 |
-
# PENNY Project - Azure ML Production Dependencies
|
| 3 |
-
# Civic Engagement AI - Python 3.10+
|
| 4 |
-
# ============================================
|
| 5 |
-
|
| 6 |
-
# ============================================
|
| 7 |
-
# FastAPI Core & Web Framework
|
| 8 |
-
# ============================================
|
| 9 |
-
fastapi==0.111.0
|
| 10 |
-
uvicorn[standard]==0.29.0
|
| 11 |
-
httpx==0.27.0
|
| 12 |
-
python-multipart==0.0.9
|
| 13 |
-
pydantic==2.6.4
|
| 14 |
-
pydantic-settings==2.2.1
|
| 15 |
-
|
| 16 |
-
# ============================================
|
| 17 |
-
# Gradio UI Framework (Hugging Face Spaces)
|
| 18 |
-
# ============================================
|
| 19 |
-
gradio==4.44.0
|
| 20 |
-
|
| 21 |
-
# ============================================
|
| 22 |
-
# Configuration & Environment
|
| 23 |
-
# ============================================
|
| 24 |
-
python-dotenv==1.0.1
|
| 25 |
-
|
| 26 |
-
# ============================================
|
| 27 |
-
# Azure SDK & Cloud Integration
|
| 28 |
-
# ============================================
|
| 29 |
-
azure-identity==1.15.0
|
| 30 |
-
azure-keyvault-secrets==4.7.0
|
| 31 |
-
azure-storage-blob==12.19.0
|
| 32 |
-
azure-ai-ml==1.14.0
|
| 33 |
-
|
| 34 |
-
# ============================================
|
| 35 |
-
# HTTP & API Clients
|
| 36 |
-
# ============================================
|
| 37 |
-
requests==2.31.0
|
| 38 |
-
aiohttp==3.9.3
|
| 39 |
-
|
| 40 |
-
# ============================================
|
| 41 |
-
# Machine Learning & NLP (Optimized for Production)
|
| 42 |
-
# ============================================
|
| 43 |
-
# Core ML framework (CPU-optimized for Azure Container Instances)
|
| 44 |
-
torch==2.2.1
|
| 45 |
-
transformers==4.38.2
|
| 46 |
-
sentencepiece==0.2.0
|
| 47 |
-
tokenizers==0.15.2
|
| 48 |
-
|
| 49 |
-
# Model acceleration (only if GPU available)
|
| 50 |
-
accelerate==0.27.2
|
| 51 |
-
|
| 52 |
-
# Scientific computing
|
| 53 |
-
numpy==1.26.4
|
| 54 |
-
scipy==1.12.0
|
| 55 |
-
|
| 56 |
-
# ============================================
|
| 57 |
-
# Data Processing & Validation
|
| 58 |
-
# ============================================
|
| 59 |
-
pandas==2.2.1
|
| 60 |
-
jsonschema==4.21.1
|
| 61 |
-
|
| 62 |
-
# ============================================
|
| 63 |
-
# Logging & Monitoring
|
| 64 |
-
# ============================================
|
| 65 |
-
python-json-logger==2.0.7
|
| 66 |
-
structlog==24.1.0
|
| 67 |
-
|
| 68 |
-
# Azure Application Insights integration
|
| 69 |
-
opencensus-ext-azure==1.1.13
|
| 70 |
-
opencensus-ext-logging==0.1.1
|
| 71 |
-
|
| 72 |
-
# ============================================
|
| 73 |
-
# Date/Time Handling
|
| 74 |
-
# ============================================
|
| 75 |
-
python-dateutil==2.9.0
|
| 76 |
-
pytz==2024.1
|
| 77 |
-
|
| 78 |
-
# ============================================
|
| 79 |
-
# Security & Cryptography
|
| 80 |
-
# ============================================
|
| 81 |
-
cryptography==42.0.5
|
| 82 |
-
|
| 83 |
-
# ============================================
|
| 84 |
-
# Testing & Development (optional - install separately for dev)
|
| 85 |
-
# ============================================
|
| 86 |
-
# pytest==8.1.1
|
| 87 |
-
# pytest-asyncio==0.23.5
|
| 88 |
-
# pytest-cov==4.1.0
|
| 89 |
-
# httpx==0.27.0 # Already included above
|
| 90 |
-
# black==24.3.0
|
| 91 |
-
# flake8==7.0.0
|
| 92 |
-
# mypy==1.9.0
|
| 93 |
-
|
| 94 |
-
# ============================================
|
| 95 |
-
# Production Server Optimization
|
| 96 |
-
# ============================================
|
| 97 |
-
gunicorn==21.2.0 # Alternative to uvicorn for production
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|