--- title: Trace Reports emoji: ⚡ colorFrom: red colorTo: red sdk: gradio sdk_version: 6.14.0 python_version: '3.12' app_file: app.py pinned: false short_description: Roast yourself from your agent traces --- # Trace Personality Bulletin A Gradio app that, given a Hugging Face *agent traces* dataset repo, fetches the sessions, sends per-session digests through `Qwen/Qwen3.6-35B-A3B` on the Hugging Face Inference API, and renders a printed **personality bulletin** of what the model thinks of the user. A "Save as PNG" button on the card screenshots it client-side for sharing. ## Configuration The app calls the HF Inference API and needs `HF_TOKEN` to be available at runtime. Set it as a Space secret: - Space → Settings → **Variables and secrets** → add `HF_TOKEN` (any token with Inference API access). ## Local development ```bash uv venv .venv --python 3.12 uv pip install --python .venv/bin/python -r requirements.txt HF_TOKEN=hf_... .venv/bin/python app.py ```