A user asks the cascade for a house.
"3-bed, solar-ready, under $640k, 30 minutes to the Salk Institute." The query lands at the cascade ingress. Routing decisions start with a hash, not a model call.
Watch the cascade route a real-estate search through Imagine, Semantic, and Math-Ground. A near-identical prior query has already paid the upstream cost. The bill drops to 8.4 J.
"3-bed, solar-ready, under $640k, 30 minutes to the Salk Institute." The query lands at the cascade ingress. Routing decisions start with a hash, not a model call.
blake3 fingerprint of the canonical query form. The cascade asks: have we answered this — or something almost identical — before? Lookup is cheap by design.
Cosine distance 0.018 between the new query and a cached answer from 2026-04-23. TTL still valid. The cache provides the Imagine and Semantic tier outputs — the most expensive work was already paid for.
Perception layer. Normally tokenizes spatial intent ("solar-ready", "commute"), grounds it against a geo-graph. Today: cached output reused; tier is skipped entirely.
Language tier. Normally parses the constraint set, runs entity linking, expands the implicit ones (e.g., "solar-ready" → roof orientation + HOA tier + interconnect status). Today: cached output reused.
The deterministic reasoner. Today's listings are different from 14 days ago, and the price ceiling shifted (user's pre-approval went up). Math-Ground re-solves the constraint, fresh — no cache shortcut for deterministic work.
The composer joins the three tier outputs into a single ranked list. Per-listing provenance retained: each result links to which tier contributed which field.
Ed25519 over the canonical JSON. Joules total, tiers exercised, memoize stats, datacenter, model versions. The receipt IS the audit trail; rewriting it means forging a signature.
The arithmetic
A cold cascade query would have cost ~2,318 J. The memoization layer turned it into 8.4 J. Run the same query class 10,000 times this month and the bill is dominated by the deterministic tier — which is the cheapest, by physics. The system gets cheaper as it learns.