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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
B
Blog
腾讯CDC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
罗磊的独立博客
月光博客
月光博客
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
V
Visual Studio Blog
I
InfoQ
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale

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
fix: use Codex context windows for OpenAI runtime (#81906...
jalehman · 2026-05-15 · via Recent Commits to openclaw:main

@@ -1,4 +1,12 @@

11

import { resolveAgentDir, resolveSessionAgentId } from "../../agents/agent-scope.js";

2+

import { resolveContextTokensForModel } from "../../agents/context.js";

3+

import { resolveAgentHarnessPolicy } from "../../agents/harness/selection.js";

4+

import {

5+

OPENAI_CODEX_PROVIDER_ID,

6+

OPENAI_PROVIDER_ID,

7+

resolveContextConfigProviderForRuntime,

8+

} from "../../agents/openai-codex-routing.js";

9+

import { normalizeProviderId } from "../../agents/provider-id.js";

210

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

311

import { logVerbose } from "../../globals.js";

412

import { createLazyImportLoader } from "../../shared/lazy-promise.js";

@@ -75,6 +83,99 @@ function formatCompactionReason(reason?: string): string | undefined {

7583

return text;

7684

}

778586+

function resolveManualCompactContextTokenBudget(params: {

87+

cfg: OpenClawConfig;

88+

provider?: string;

89+

model?: string;

90+

agentId: string;

91+

sessionKey: string;

92+

liveContextTokens?: number;

93+

persistedContextTokens?: number;

94+

}): number | undefined {

95+

const liveContextTokens =

96+

typeof params.liveContextTokens === "number" &&

97+

Number.isFinite(params.liveContextTokens) &&

98+

params.liveContextTokens > 0

99+

? Math.floor(params.liveContextTokens)

100+

: undefined;

101+102+

const model = normalizeOptionalString(params.model);

103+

const provider = normalizeOptionalString(params.provider);

104+

if (!model || !provider) {

105+

return liveContextTokens ?? resolvePersistedContextTokens(params.persistedContextTokens);

106+

}

107+108+

const harnessPolicy = resolveAgentHarnessPolicy({

109+

provider,

110+

modelId: model,

111+

config: params.cfg,

112+

agentId: params.agentId,

113+

sessionKey: params.sessionKey,

114+

});

115+

const contextConfigProvider = resolveContextConfigProviderForRuntime({

116+

provider,

117+

runtimeId: harnessPolicy.runtime,

118+

});

119+

const configuredContextTokens = resolveContextTokensForModel({

120+

cfg: params.cfg,

121+

provider: contextConfigProvider,

122+

model: resolveManualCompactContextModelId({

123+

provider,

124+

contextConfigProvider,

125+

model,

126+

}),

127+

allowAsyncLoad: false,

128+

});

129+

if (typeof configuredContextTokens === "number" && configuredContextTokens > 0) {

130+

const configuredBudget = Math.floor(configuredContextTokens);

131+

return liveContextTokens !== undefined

132+

? Math.min(liveContextTokens, configuredBudget)

133+

: configuredBudget;

134+

}

135+136+

if (liveContextTokens !== undefined) {

137+

return liveContextTokens;

138+

}

139+140+

return resolvePersistedContextTokens(params.persistedContextTokens);

141+

}

142+143+

function resolvePersistedContextTokens(value: number | undefined): number | undefined {

144+

return typeof value === "number" && Number.isFinite(value) && value > 0

145+

? Math.floor(value)

146+

: undefined;

147+

}

148+149+

function resolveManualCompactContextModelId(params: {

150+

provider: string;

151+

contextConfigProvider: string;

152+

model: string;

153+

}): string {

154+

const model = params.model.trim();

155+

const slashIndex = model.indexOf("/");

156+

if (slashIndex <= 0) {

157+

return model;

158+

}

159+160+

const modelProvider = normalizeProviderId(model.slice(0, slashIndex));

161+

const selectedProvider = normalizeProviderId(params.provider);

162+

const contextConfigProvider = normalizeProviderId(params.contextConfigProvider);

163+

const modelId = model.slice(slashIndex + 1).trim();

164+

if (!modelId) {

165+

return model;

166+

}

167+168+

if (

169+

modelProvider === selectedProvider ||

170+

modelProvider === contextConfigProvider ||

171+

(modelProvider === OPENAI_PROVIDER_ID && contextConfigProvider === OPENAI_CODEX_PROVIDER_ID)

172+

) {

173+

return modelId;

174+

}

175+176+

return model;

177+

}

178+78179

export const handleCompactCommand: CommandHandler = async (params) => {

79180

const compactRequested =

80181

params.command.commandBodyNormalized === "/compact" ||

@@ -116,6 +217,15 @@ export const handleCompactCommand: CommandHandler = async (params) => {

116217

agentId: sessionAgentId,

117218

isGroup: params.isGroup,

118219

});

220+

const contextTokenBudget = resolveManualCompactContextTokenBudget({

221+

cfg: params.cfg,

222+

provider: params.provider,

223+

model: params.model,

224+

agentId: sessionAgentId,

225+

sessionKey: params.sessionKey,

226+

liveContextTokens: params.contextTokens,

227+

persistedContextTokens: targetSessionEntry.contextTokens,

228+

});

119229

const result = await runtime.compactEmbeddedPiSession({

120230

sessionId,

121231

sessionKey: params.sessionKey,

@@ -143,6 +253,7 @@ export const handleCompactCommand: CommandHandler = async (params) => {

143253

skillsSnapshot: targetSessionEntry.skillsSnapshot,

144254

provider: params.provider,

145255

model: params.model,

256+

contextTokenBudget,

146257

agentHarnessId:

147258

targetSessionEntry.sessionId === sessionId ? targetSessionEntry.agentHarnessId : undefined,

148259

thinkLevel: params.resolvedThinkLevel ?? (await params.resolveDefaultThinkingLevel()),

@@ -186,7 +297,7 @@ export const handleCompactCommand: CommandHandler = async (params) => {

186297

tokensAfterCompaction ?? runtime.resolveFreshSessionTotalTokens(targetSessionEntry);

187298

const contextSummary = runtime.formatContextUsageShort(

188299

typeof totalTokens === "number" && totalTokens > 0 ? totalTokens : null,

189-

params.contextTokens ?? targetSessionEntry.contextTokens ?? null,

300+

contextTokenBudget ?? null,

190301

);

191302

const reason = formatCompactionReason(result.reason);

192303

const line = reason