Spaces:
Sleeping
Sleeping
A newer version of the Gradio SDK is available: 6.15.2
Deployment Guide
Web UI upload path
- Go to Hugging Face and create a new Gradio Space.
- Download and unzip this package.
- Upload all files from the folder to the Space root.
- Wait for the build to install dependencies from
requirements.txt. - Open the Space. On first load, the notebook runs automatically.
- Use Notebook Runner if you want to re-run the notebook manually.
Expected runtime behavior
- The app reads
synthetic_sales_data.csvandsynthetic_book_reviews.csv. - It runs
pythonanalysis.ipynbwith Papermill. - Saved figures appear in the gallery.
- Saved CSV and JSON outputs appear in the table preview and KPI cards.
Common fixes
- If build fails, confirm the Space SDK is Gradio.
- If notebook execution fails, check the
Execution Logtab output. - If the AI tab does not use an LLM, set
HF_API_KEYin Space variables.
Build error fix applied
The previous package used python_version: 3.10 without quotes in README.md. In YAML, that can be interpreted as 3.1, which makes Hugging Face try to pull python:3.1. This package fixes it by using python_version: "3.10".