Spaces:
Runtime error
Runtime error
A newer version of the Gradio SDK is available: 6.26.0
Changelog
v2.1.0 - Pure-Python Stack
Breaking Changes
- HTMX, Jinja2, Alpine.js, and Tailwind CSS frontend removed entirely
- No HTML templates, no inline HTML/CSS, no
unsafe_allow_htmlanywhere in the codebase - Frontend is a pure-Python Streamlit dashboard at
frontend/(streamlit run frontend/Home.py)
What's New
- Streamlit dashboard restored with native widgets only: Sentiment Analyzer, Batch Analytics, System Monitor
- Admin section gated behind an optional
ADMIN_PASSWORD - Dashboard talks to the FastAPI backend over HTTP (
API_BASE_URL, defaulthttp://localhost:8000) - README and docs updated to reflect the Python-only stack
Notes
- API server:
uvicorn api.main:app --reloadon port 8000 - Dashboard:
streamlit run frontend/Home.pyon port 8501 - JSON API endpoints at
/predict,/batch,/status/{job_id},/health,/info,/metrics - Swagger UI at
/docsis preserved - All ML model code, Celery workers, DVC/MLflow integration is unchanged