Load context · spin · transform
Type a "user context" (a bag of words), pick how many intents K to spin it down to, and run. Floor 1 clusters like-to-like and compresses; floor 2 runs a real toy transformer over the intents. Everything is computed live and deterministically in your browser.
3
What it accomplishes — and what it doesn't
What's real
It genuinely converges (energy falls each spin, then settles), sorts like-to-like (planted groups separate cleanly), compresses N context vectors to K intents, and transforms — a real toy forward pass over the intents. python selftest.py proves all of it with no network (12 checks).
What it isn't
It is not a trained model and makes no claim to beat a standard transformer. Whether a clustering pre-pass actually helps on real data is an empirical question this doesn't answer — it only shows the mechanism, runnably and deterministically. v1: an honest sketch of the silo David described.
silo.py (centrifuge + toy transformer + run_silo) · selftest.py (converges · deterministic · like-to-like · N→K · runs). Floor 2 reuses the the-forward-pass engine.