@@ -59,26 +59,34 @@ The current system includes:
5959- browser and backend test coverage
6060- a real GPU-backed example-run generator with standalone HTML output
6161
62+ Example artifacts checked into the repo:
63+
64+ - [ Sample HTML walkthrough] ( ./output/examples/real_e2e_example_run/real_e2e_example_run.html )
65+ - [ Sample trace report] ( ./output/examples/real_e2e_example_run/session_trace_report.html )
66+ - [ Sample manifest] ( ./output/examples/real_e2e_example_run/manifest.json )
67+
6268## User Flow
6369
6470The main workflow is prompt-first:
6571
66721 . the user opens ` /setup `
67732 . enters a text prompt
68- 3 . creates a session
69- 4 . generates a round of candidate images
70- 5 . submits ratings or preferences
71- 6 . waits for the async update job to finish
72- 7 . inspects replay and the saved trace report
74+ 3 . optionally edits the per-session YAML configuration
75+ 4 . creates a session
76+ 5 . generates a round of candidate images
77+ 6 . submits explicit feedback for the active mode
78+ 7 . waits for the async update job to finish
79+ 8 . inspects replay and the saved trace report
7380
7481The normal runtime is GPU-only and uses the real Diffusers backend. If CUDA is unavailable, the app refuses to start instead of silently falling back.
7582
83+ ![ Runtime architecture diagram] ( ./docs/assets/illustrations/runtime_flow.svg )
84+
7685## Getting Started
7786
7887Install the project:
7988
8089``` bash
81- python -m pip install -e .[dev]
8290python -m pip install -e .[dev,inference]
8391```
8492
@@ -163,6 +171,11 @@ Real end-to-end example bundle:
163171python scripts/create_real_e2e_example.py
164172```
165173
174+ Checked-in sample bundle:
175+
176+ - [ real_e2e_example_run.html] ( ./output/examples/real_e2e_example_run/real_e2e_example_run.html )
177+ - [ session_trace_report.html] ( ./output/examples/real_e2e_example_run/session_trace_report.html )
178+
166179## Repo Guides
167180
168181Per-folder documentation is available in:
@@ -197,6 +210,10 @@ Current visual assets include:
197210- [ docs/assets/illustrations/steering_loop.png] ( ./docs/assets/illustrations/steering_loop.png )
198211- [ docs/assets/illustrations/system_architecture.png] ( ./docs/assets/illustrations/system_architecture.png )
199212- [ docs/assets/illustrations/trace_report.png] ( ./docs/assets/illustrations/trace_report.png )
213+ - [ docs/assets/illustrations/runtime_flow.svg] ( ./docs/assets/illustrations/runtime_flow.svg )
214+ - [ docs/assets/illustrations/session_lifecycle.svg] ( ./docs/assets/illustrations/session_lifecycle.svg )
215+ - [ docs/assets/illustrations/feedback_modes.svg] ( ./docs/assets/illustrations/feedback_modes.svg )
216+ - [ docs/assets/illustrations/config_to_generation.svg] ( ./docs/assets/illustrations/config_to_generation.svg )
200217
201218They can be regenerated with:
202219
0 commit comments