mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 19:11:34 +00:00
* 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
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
export type RuntimeParityUsage = {
|
|
inputTokens: number;
|
|
outputTokens: number;
|
|
totalTokens: number;
|
|
cacheRead?: number;
|
|
cacheWrite?: number;
|
|
};
|