Full KV cache
The reference execution retains the full cache. It supplies the matched baseline for the selected workload.
Inference demo
Compare baseline, fixed cache compression and router-selected execution within a supported deployment scope.
b968826d9c46dd6066d109eabc6255188de91218The reference execution retains the full cache. It supplies the matched baseline for the selected workload.
The existing white-box runtime physically evicts cache positions. Measured resident bytes are distinct from total device memory, latency and cost.
The calibrated router selects a supported allocation or falls back to full cache. Recorded decisions explain what ran; they do not certify an individual answer.
Live comparison is not configured for this public deployment. No benchmark has been launched.
The comparison launcher requires a configured public preset, compatible harness protocol and bounded operator-owned capacity. The existing live endpoint remains available through its separately configured snippet below.
This calls the existing sponsored endpoint. It produces an answer, not a matched benchmark or quality certificate. The returned execution label identifies whether the request used an optimized policy or baseline.
import json
from pyodide.http import pyfetch
response = await pyfetch(
"https://api.reductionofstates.com/v1/demo/inference",
method="POST",
headers={"Content-Type": "application/json"},
body=json.dumps({"prompt": "Explain KV caching."}),
credentials="omit",
)
response.raise_for_status()
result = await response.json()
print(result["choices"][0]["message"]["content"])const response = await fetch(
"https://api.reductionofstates.com/v1/demo/inference",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ prompt: "Explain KV caching." }),
credentials: "omit",
},
);
if (!response.ok) throw new Error(`Gateway returned ${response.status}`);
const result = await response.json();
console.log(result.choices[0].message.content);curl https://api.reductionofstates.com/v1/demo/inference \
-H 'Content-Type: application/json' \
-d '{"prompt":"Explain KV caching."}'A single inference request. Savings require a workload-specific comparison.
Existing enforcement binds approval to the exact deployed identity. Revoked, expired or mismatched approvals cannot authorize an optimized policy. The runtime uses the full baseline when safe fallback is available and rejects the request otherwise.
Inspect the evidence and enforcement workflow