You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ This repository now contains:
49
49
- a real GPU-backed Diffusers generation workflow
50
50
- a deterministic mock generation path reserved for tests
51
51
- rich backend logging and persisted trace events
52
+
- per-session HTML trace reports that capture proposed images, user actions, and preference outcomes
52
53
- frontend trace capture and visible trace panels
53
54
- automated API, lifecycle, and browser tests including replay export smoke coverage
54
55
@@ -125,19 +126,32 @@ back to mock automatically. The mock generator is reserved for explicit test
125
126
harnesses only.
126
127
127
128
Trace logs are persisted under `data/traces/`.
129
+
Per-session reports are written under `data/traces/sessions/<session_id>/report.html` and are also available in the app at `/sessions/{session_id}/trace-report`.
128
130
129
131
Run a one-off real-model smoke test:
130
132
131
133
```bash
132
134
python scripts/smoke_real_diffusers.py
133
135
```
134
136
137
+
Create a full real GPU-backed example run with a readable HTML walkthrough:
0 commit comments