Files
openclaw/extensions/qa-lab/src/runtime-parity-usage.ts
Peter Steinberger 5de0366d95 fix(codex): stabilize prompts and expose real cache regressions (#115238)
* fix(codex): stabilize prompt caching and measure uncached work

* test(codex): refresh stable dynamic-tool prompt snapshots

* fix(qa): account for cache rewrites and incomplete telemetry

* fix(qa): reject inconsistent measured cache totals

* fix(qa): preserve live profile eligibility and parity topology

* fix(qa): extract acyclic runtime parity usage contract
2026-07-28 13:26:04 -04:00

8 lines
153 B
TypeScript

export type RuntimeParityUsage = {
inputTokens: number;
outputTokens: number;
totalTokens: number;
cacheRead?: number;
cacheWrite?: number;
};