惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
罗磊的独立博客
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
J
Java Code Geeks
L
LangChain Blog
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore(deadcode): share session cost totals · openclaw/ope...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -16,6 +16,10 @@ import {

1616

import type { SessionEntry } from "../../config/sessions/types.js";

1717

import type { OpenClawConfig } from "../../config/types.openclaw.js";

1818

import { loadProviderUsageSummary } from "../../infra/provider-usage.js";

19+

import {

20+

addCostUsageTotals,

21+

createEmptyCostUsageTotals,

22+

} from "../../infra/session-cost-usage-totals.js";

1923

import type {

2024

CostUsageSummary,

2125

CostUsageTotals,

@@ -77,36 +81,6 @@ type CostUsageCacheEntry = {

77817882

const costUsageCache = new Map<string, CostUsageCacheEntry>();

798380-

function createEmptyCostUsageTotals(): CostUsageTotals {

81-

return {

82-

input: 0,

83-

output: 0,

84-

cacheRead: 0,

85-

cacheWrite: 0,

86-

totalTokens: 0,

87-

totalCost: 0,

88-

inputCost: 0,

89-

outputCost: 0,

90-

cacheReadCost: 0,

91-

cacheWriteCost: 0,

92-

missingCostEntries: 0,

93-

};

94-

}

95-96-

function addCostUsageTotals(target: CostUsageTotals, source: CostUsageTotals): void {

97-

target.input += source.input;

98-

target.output += source.output;

99-

target.cacheRead += source.cacheRead;

100-

target.cacheWrite += source.cacheWrite;

101-

target.totalTokens += source.totalTokens;

102-

target.totalCost += source.totalCost;

103-

target.inputCost += source.inputCost;

104-

target.outputCost += source.outputCost;

105-

target.cacheReadCost += source.cacheReadCost;

106-

target.cacheWriteCost += source.cacheWriteCost;

107-

target.missingCostEntries += source.missingCostEntries;

108-

}

109-11084

function findCostUsageCacheEvictionKey(): string | undefined {

11185

for (const [key, entry] of costUsageCache) {

11286

// Prefer evicting settled entries so duplicate callers can still join active loads.

@@ -522,32 +496,12 @@ function maybeMergeFamilyEntry(params: {

522496523497

function createEmptySessionCostSummary(): SessionCostSummary {

524498

return {

525-

input: 0,

526-

output: 0,

527-

cacheRead: 0,

528-

cacheWrite: 0,

529-

totalTokens: 0,

530-

totalCost: 0,

531-

inputCost: 0,

532-

outputCost: 0,

533-

cacheReadCost: 0,

534-

cacheWriteCost: 0,

535-

missingCostEntries: 0,

499+

...createEmptyCostUsageTotals(),

536500

};

537501

}

538502539503

function mergeSessionUsageInto(target: SessionCostSummary, source: SessionCostSummary): void {

540-

target.input += source.input;

541-

target.output += source.output;

542-

target.cacheRead += source.cacheRead;

543-

target.cacheWrite += source.cacheWrite;

544-

target.totalTokens += source.totalTokens;

545-

target.totalCost += source.totalCost;

546-

target.inputCost += source.inputCost;

547-

target.outputCost += source.outputCost;

548-

target.cacheReadCost += source.cacheReadCost;

549-

target.cacheWriteCost += source.cacheWriteCost;

550-

target.missingCostEntries += source.missingCostEntries;

504+

addCostUsageTotals(target, source);

551505

target.firstActivity =

552506

target.firstActivity === undefined

553507

? source.firstActivity

@@ -687,19 +641,6 @@ function mergeModelUsage(

687641

right: SessionCostSummary["modelUsage"],

688642

): SessionCostSummary["modelUsage"] {

689643

const map = new Map<string, SessionModelUsage>();

690-

const mergeTotals = (target: CostUsageSummary["totals"], source: CostUsageSummary["totals"]) => {

691-

target.input += source.input;

692-

target.output += source.output;

693-

target.cacheRead += source.cacheRead;

694-

target.cacheWrite += source.cacheWrite;

695-

target.totalTokens += source.totalTokens;

696-

target.totalCost += source.totalCost;

697-

target.inputCost += source.inputCost;

698-

target.outputCost += source.outputCost;

699-

target.cacheReadCost += source.cacheReadCost;

700-

target.cacheWriteCost += source.cacheWriteCost;

701-

target.missingCostEntries += source.missingCostEntries;

702-

};

703644

for (const entry of [...(left ?? []), ...(right ?? [])]) {

704645

const key = `${entry.provider ?? "unknown"}::${entry.model ?? "unknown"}`;

705646

const existing =

@@ -711,7 +652,7 @@ function mergeModelUsage(

711652

totals: createEmptySessionCostSummary(),

712653

} as SessionModelUsage);

713654

existing.count += entry.count;

714-

mergeTotals(existing.totals, entry.totals);

655+

addCostUsageTotals(existing.totals, entry.totals);

715656

map.set(key, existing);

716657

}

717658

return map.size > 0 ? Array.from(map.values()) : undefined;

@@ -1210,19 +1151,7 @@ export const usageHandlers: GatewayRequestHandlers = {

1210115112111152

// Load usage for each session

12121153

const sessions: SessionUsageEntry[] = [];

1213-

const aggregateTotals = {

1214-

input: 0,

1215-

output: 0,

1216-

cacheRead: 0,

1217-

cacheWrite: 0,

1218-

totalTokens: 0,

1219-

totalCost: 0,

1220-

inputCost: 0,

1221-

outputCost: 0,

1222-

cacheReadCost: 0,

1223-

cacheWriteCost: 0,

1224-

missingCostEntries: 0,

1225-

};

1154+

const aggregateTotals = createEmptyCostUsageTotals();

12261155

const aggregateMessages: SessionMessageCounts = {

12271156

total: 0,

12281157

user: 0,

@@ -1261,36 +1190,6 @@ export const usageHandlers: GatewayRequestHandlers = {

12611190

const modelDailyMap = new Map<string, SessionDailyModelUsage>();

12621191

let cacheStatus: UsageCacheStatus | undefined;

126311921264-

const emptyTotals = (): CostUsageSummary["totals"] => ({

1265-

input: 0,

1266-

output: 0,

1267-

cacheRead: 0,

1268-

cacheWrite: 0,

1269-

totalTokens: 0,

1270-

totalCost: 0,

1271-

inputCost: 0,

1272-

outputCost: 0,

1273-

cacheReadCost: 0,

1274-

cacheWriteCost: 0,

1275-

missingCostEntries: 0,

1276-

});

1277-

const mergeTotals = (

1278-

target: CostUsageSummary["totals"],

1279-

source: CostUsageSummary["totals"],

1280-

) => {

1281-

target.input += source.input;

1282-

target.output += source.output;

1283-

target.cacheRead += source.cacheRead;

1284-

target.cacheWrite += source.cacheWrite;

1285-

target.totalTokens += source.totalTokens;

1286-

target.totalCost += source.totalCost;

1287-

target.inputCost += source.inputCost;

1288-

target.outputCost += source.outputCost;

1289-

target.cacheReadCost += source.cacheReadCost;

1290-

target.cacheWriteCost += source.cacheWriteCost;

1291-

target.missingCostEntries += source.missingCostEntries;

1292-

};

1293-12941193

const usageByEntryIndex: Array<SessionCostSummary | null> = Array.from(

12951194

{ length: mergedEntries.length },

12961195

() => null,

@@ -1409,17 +1308,7 @@ export const usageHandlers: GatewayRequestHandlers = {

14091308

const usage = usageByEntryIndex[entryIndex];

1410130914111310

if (usage) {

1412-

aggregateTotals.input += usage.input;

1413-

aggregateTotals.output += usage.output;

1414-

aggregateTotals.cacheRead += usage.cacheRead;

1415-

aggregateTotals.cacheWrite += usage.cacheWrite;

1416-

aggregateTotals.totalTokens += usage.totalTokens;

1417-

aggregateTotals.totalCost += usage.totalCost;

1418-

aggregateTotals.inputCost += usage.inputCost;

1419-

aggregateTotals.outputCost += usage.outputCost;

1420-

aggregateTotals.cacheReadCost += usage.cacheReadCost;

1421-

aggregateTotals.cacheWriteCost += usage.cacheWriteCost;

1422-

aggregateTotals.missingCostEntries += usage.missingCostEntries;

1311+

addCostUsageTotals(aggregateTotals, usage);

14231312

}

1424131314251314

const channel = merged.storeEntry?.channel ?? merged.storeEntry?.origin?.provider;

@@ -1450,10 +1339,10 @@ export const usageHandlers: GatewayRequestHandlers = {

14501339

provider: entry.provider,

14511340

model: entry.model,

14521341

count: 0,

1453-

totals: emptyTotals(),

1342+

totals: createEmptyCostUsageTotals(),

14541343

} as SessionModelUsage);

14551344

modelExisting.count += entry.count;

1456-

mergeTotals(modelExisting.totals, entry.totals);

1345+

addCostUsageTotals(modelExisting.totals, entry.totals);

14571346

byModelMap.set(modelKey, modelExisting);

1458134714591348

const providerKey = entry.provider ?? "unknown";

@@ -1463,10 +1352,10 @@ export const usageHandlers: GatewayRequestHandlers = {

14631352

provider: entry.provider,

14641353

model: undefined,

14651354

count: 0,

1466-

totals: emptyTotals(),

1355+

totals: createEmptyCostUsageTotals(),

14671356

} as SessionModelUsage);

14681357

providerExisting.count += entry.count;

1469-

mergeTotals(providerExisting.totals, entry.totals);

1358+

addCostUsageTotals(providerExisting.totals, entry.totals);

14701359

byProviderMap.set(providerKey, providerExisting);

14711360

}

14721361

}

@@ -1495,14 +1384,14 @@ export const usageHandlers: GatewayRequestHandlers = {

14951384

}

1496138514971386

if (agentId) {

1498-

const agentTotals = byAgentMap.get(agentId) ?? emptyTotals();

1499-

mergeTotals(agentTotals, usage);

1387+

const agentTotals = byAgentMap.get(agentId) ?? createEmptyCostUsageTotals();

1388+

addCostUsageTotals(agentTotals, usage);

15001389

byAgentMap.set(agentId, agentTotals);

15011390

}

1502139115031392

if (channel) {

1504-

const channelTotals = byChannelMap.get(channel) ?? emptyTotals();

1505-

mergeTotals(channelTotals, usage);

1393+

const channelTotals = byChannelMap.get(channel) ?? createEmptyCostUsageTotals();

1394+

addCostUsageTotals(channelTotals, usage);

15061395

byChannelMap.set(channel, channelTotals);

15071396

}

15081397