File size: 990 Bytes
ac89393
 
 
 
 
 
 
 
 
 
1252cb9
ac89393
 
1252cb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
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
```