Cache state is operational state
If your provider exposes cache hit metrics, treat them like first-class telemetry. A workflow you thought was cache-friendly may be silently rebuilding the prefix every turn — the cost graph will tell you, but only if you log it. Cache hit ratio is a leading indicator for both cost and behavioral consistency.
Probe the cache deliberately
Send the same prefix twice in quick succession; check whether the second request reports a cache hit. Send the prefix with one byte changed; check whether the cache misses. These are five-minute tests that reveal whether your caching strategy actually works as intended.
Hidden state lives in caches and replays
Some 'mysterious' model behaviors trace back to cache state — a prefix from a previous experiment is still warm and biasing answers. Cold-restart the session, force-bust the cache (change a single byte in the prefix), and see whether the behavior persists. If not, the bug was hidden cache state, not the model.