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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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
fix: bound aggregate prompt tool results · openclaw/openc...
ooiuuii · 2026-05-29 · via Recent Commits to openclaw:main

@@ -179,9 +179,7 @@ import {

179179

buildEmptyExplicitToolAllowlistError,

180180

collectExplicitToolAllowlistSources,

181181

} from "../../tool-allowlist-guard.js";

182-

import {

183-

filterRuntimeCompatibleTools,

184-

} from "../../tool-schema-projection.js";

182+

import { filterRuntimeCompatibleTools } from "../../tool-schema-projection.js";

185183

import { logRuntimeToolSchemaQuarantine } from "../../tool-schema-quarantine.js";

186184

import {

187185

addClientToolsToToolSearchCatalog,

@@ -266,6 +264,7 @@ import {

266264

} from "../tool-result-context-guard.js";

267265

import {

268266

resolveLiveToolResultMaxChars,

267+

truncateOversizedToolResultsInMessages,

269268

truncateOversizedToolResultsInSessionManager,

270269

} from "../tool-result-truncation.js";

271270

import { splitSdkTools } from "../tool-split.js";

@@ -460,6 +459,7 @@ export {

460459

};

461460462461

const MAX_BTW_SNAPSHOT_MESSAGES = 100;

462+

const PROMPT_TOOL_RESULT_AGGREGATE_CAP_MULTIPLIER = 4;

463463464464

function summarizeMessagePayload(msg: AgentMessage): { textChars: number; imageBlocks: number } {

465465

const content = (msg as { content?: unknown }).content;

@@ -3434,6 +3434,31 @@ export async function runEmbeddedAttempt(

34343434

activeSession.agent.state.messages = filteredMessages;

34353435

}

34363436

prePromptMessageCount = activeSession.messages.length;

3437+

const contextTokenBudget = params.contextTokenBudget ?? DEFAULT_CONTEXT_TOKENS;

3438+

const promptToolResultMaxChars = resolveLiveToolResultMaxChars({

3439+

contextWindowTokens: contextTokenBudget,

3440+

cfg: params.config,

3441+

agentId: sessionAgentId,

3442+

});

3443+

let promptHistoryMessages = activeSession.messages;

3444+

const promptToolResultTruncation = truncateOversizedToolResultsInMessages(

3445+

activeSession.messages,

3446+

contextTokenBudget,

3447+

promptToolResultMaxChars,

3448+

promptToolResultMaxChars * PROMPT_TOOL_RESULT_AGGREGATE_CAP_MULTIPLIER,

3449+

);

3450+

if (promptToolResultTruncation.truncatedCount > 0) {

3451+

promptHistoryMessages = promptToolResultTruncation.messages;

3452+

log.info(

3453+

`[tool-result-truncation] Truncated ${promptToolResultTruncation.truncatedCount} ` +

3454+

`tool result(s) for prompt history ` +

3455+

`(maxChars=${promptToolResultMaxChars} ` +

3456+

`aggregateBudgetChars=${

3457+

promptToolResultMaxChars * PROMPT_TOOL_RESULT_AGGREGATE_CAP_MULTIPLIER

3458+

}) ` +

3459+

`sessionKey=${params.sessionKey ?? params.sessionId ?? "unknown"}`,

3460+

);

3461+

}

3437346234383463

const promptSubmission = resolveRuntimeContextPromptParts({

34393464

effectivePrompt: promptForRuntimeContextSplit,

@@ -3470,8 +3495,8 @@ export async function runEmbeddedAttempt(

34703495

const runtimeContextMessageForCurrentTurn =

34713496

buildRuntimeContextCustomMessage(runtimeContextForHook);

34723497

const messagesForCurrentPrompt = runtimeContextMessageForCurrentTurn

3473-

? [...activeSession.messages, runtimeContextMessageForCurrentTurn]

3474-

: activeSession.messages;

3498+

? [...promptHistoryMessages, runtimeContextMessageForCurrentTurn]

3499+

: promptHistoryMessages;

34753500

const hookMessagesForCurrentPrompt = normalizeMessagesForCurrentPromptBoundary({

34763501

messages: messagesForCurrentPrompt,

34773502

prompt: promptForModel,

@@ -3705,7 +3730,6 @@ export async function runEmbeddedAttempt(

37053730

const promptLen = effectivePrompt.length;

37063731

const sessionSummary = summarizeSessionContext(activeSession.messages);

37073732

const reserveTokens = settingsManager.getCompactionReserveTokens();

3708-

const contextTokenBudget = params.contextTokenBudget ?? DEFAULT_CONTEXT_TOKENS;

37093733

emitTrustedDiagnosticEvent({

37103734

type: "context.assembled",

37113735

runId: params.runId,

@@ -3789,11 +3813,7 @@ export async function runEmbeddedAttempt(

37893813

prompt: promptForModel,

37903814

contextTokenBudget,

37913815

reserveTokens,

3792-

toolResultMaxChars: resolveLiveToolResultMaxChars({

3793-

contextWindowTokens: contextTokenBudget,

3794-

cfg: params.config,

3795-

agentId: sessionAgentId,

3796-

}),

3816+

toolResultMaxChars: promptToolResultMaxChars,

37973817

});

37983818

if (preemptiveCompaction) {

37993819

contextBudgetStatus = buildPrePromptContextBudgetStatus({

@@ -3901,6 +3921,29 @@ export async function runEmbeddedAttempt(

39013921

if (normalizedReplayMessages !== activeSession.messages) {

39023922

activeSession.agent.state.messages = normalizedReplayMessages;

39033923

}

3924+

const installProviderPromptHistoryTransform = (): (() => void) => {

3925+

const baseStreamFn = activeSession.agent.streamFn;

3926+

const providerPromptStreamFn = wrapStreamFnWithMessageTransform(

3927+

baseStreamFn,

3928+

(messages) => {

3929+

const providerPromptHistoryTruncation = truncateOversizedToolResultsInMessages(

3930+

messages,

3931+

contextTokenBudget,

3932+

promptToolResultMaxChars,

3933+

promptToolResultMaxChars * PROMPT_TOOL_RESULT_AGGREGATE_CAP_MULTIPLIER,

3934+

);

3935+

return providerPromptHistoryTruncation.truncatedCount > 0

3936+

? providerPromptHistoryTruncation.messages

3937+

: messages;

3938+

},

3939+

);

3940+

activeSession.agent.streamFn = providerPromptStreamFn;

3941+

return () => {

3942+

if (activeSession.agent.streamFn === providerPromptStreamFn) {

3943+

activeSession.agent.streamFn = baseStreamFn;

3944+

}

3945+

};

3946+

};

39043947

finalPromptText = promptForSession;

39053948

trajectoryRecorder?.recordEvent("prompt.submitted", {

39063949

prompt: promptForModel,

@@ -3928,6 +3971,7 @@ export async function runEmbeddedAttempt(

39283971

captureCurrentPromptForModel = true;

39293972

}

39303973

};

3974+

const cleanupProviderPromptHistoryTransform = installProviderPromptHistoryTransform();

39313975

try {

39323976

if (promptSubmission.runtimeOnly) {

39333977

await promptActiveSession(promptForSession, {

@@ -3956,6 +4000,7 @@ export async function runEmbeddedAttempt(

39564000

}

39574001

}

39584002

} finally {

4003+

cleanupProviderPromptHistoryTransform();

39594004

cleanupModelPromptTransform();

39604005

}

39614006

}