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

推荐订阅源

月光博客
月光博客
雷峰网
雷峰网
S
SegmentFault 最新的问题
博客园 - 【当耐特】
博客园_首页
量子位
爱范儿
爱范儿
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
V
V2EX
美团技术团队
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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(core): centralize non-finite integer options · opencl...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,8 +1,9 @@

1+

import { resolveIntegerOption as resolveSharedIntegerOption } from "../shared/number-coercion.js";

2+
13

export function resolveIntegerOption(

24

value: number | undefined,

35

fallback: number,

46

params: { min: number },

57

): number {

6-

const candidate = typeof value === "number" && Number.isFinite(value) ? value : fallback;

7-

return Math.max(params.min, Math.floor(candidate));

8+

return resolveSharedIntegerOption(value, fallback, params);

89

}

Original file line numberDiff line numberDiff line change

@@ -199,6 +199,19 @@ describe("installSessionToolResultGuard", () => {

199199

expect(text).toContain("truncated");

200200

});

201201
202+

it("falls back to the default tool-result cap for non-finite configured caps", () => {

203+

const sm = SessionManager.inMemory();

204+

installSessionToolResultGuard(sm, {

205+

maxToolResultChars: Number.NaN,

206+

});

207+
208+

appendToolResultText(sm, "x".repeat(80_000));

209+
210+

const text = getToolResultText(getPersistedMessages(sm));

211+

expect(text.length).toBeLessThanOrEqual(16_000);

212+

expect(text).toContain("truncated");

213+

});

214+
202215

it("backfills blank toolResult names from pending tool calls", () => {

203216

const sm = SessionManager.inMemory();

204217

installSessionToolResultGuard(sm);

Original file line numberDiff line numberDiff line change

@@ -14,6 +14,7 @@ import type {

1414

PluginHookBeforeMessageWriteResult,

1515

} from "../plugins/types.js";

1616

import { emitSessionTranscriptUpdate } from "../sessions/transcript-events.js";

17+

import { resolveIntegerOption } from "../shared/number-coercion.js";

1718

import { normalizeOptionalString } from "../shared/string-coerce.js";

1819

import { formatContextLimitTruncationNotice } from "./embedded-agent-runner/context-truncation-notice.js";

1920

import {

@@ -46,7 +47,9 @@ function capToolResultSize(msg: AgentMessage, maxChars: number): AgentMessage {

4647

}

4748
4849

function resolveMaxToolResultChars(opts?: { maxToolResultChars?: number }): number {

49-

return Math.max(1, opts?.maxToolResultChars ?? DEFAULT_MAX_LIVE_TOOL_RESULT_CHARS);

50+

return resolveIntegerOption(opts?.maxToolResultChars, DEFAULT_MAX_LIVE_TOOL_RESULT_CHARS, {

51+

min: 1,

52+

});

5053

}

5154
5255

type UserAgentMessage = Extract<AgentMessage, { role: "user" }>;

Original file line numberDiff line numberDiff line change

@@ -95,6 +95,26 @@ describe("tool image sanitizing", () => {

9595

expect(image.mimeType).toBe("image/jpeg");

9696

});

9797
98+

it("uses default image limits for non-finite options", async () => {

99+

const jpeg = createTinyJpegBuffer();

100+
101+

const out = await sanitizeContentBlocksImages(

102+

[

103+

{

104+

type: "image" as const,

105+

data: jpeg.toString("base64"),

106+

mimeType: "image/jpeg",

107+

},

108+

],

109+

"test",

110+

{ maxDimensionPx: Number.NaN, maxBytes: Number.NaN },

111+

);

112+
113+

const image = getImageBlock(out);

114+

expect(image.mimeType).toBe("image/jpeg");

115+

expect(image.data).toBe(jpeg.toString("base64"));

116+

});

117+
98118

it("drops malformed image base64 payloads", async () => {

99119

const blocks = [

100120

{

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,7 @@ import {

88

isImageProcessorUnavailableError,

99

resizeToJpeg,

1010

} from "../media/media-services.js";

11+

import { resolveIntegerOption } from "../shared/number-coercion.js";

1112

import {

1213

DEFAULT_IMAGE_MAX_BYTES,

1314

DEFAULT_IMAGE_MAX_DIMENSION_PX,

@@ -289,8 +290,10 @@ export async function sanitizeContentBlocksImages(

289290

label: string,

290291

opts: ImageSanitizationLimits = {},

291292

): Promise<ToolContentBlock[]> {

292-

const maxDimensionPx = Math.max(opts.maxDimensionPx ?? MAX_IMAGE_DIMENSION_PX, 1);

293-

const maxBytes = Math.max(opts.maxBytes ?? MAX_IMAGE_BYTES, 1);

293+

const maxDimensionPx = resolveIntegerOption(opts.maxDimensionPx, MAX_IMAGE_DIMENSION_PX, {

294+

min: 1,

295+

});

296+

const maxBytes = resolveIntegerOption(opts.maxBytes, MAX_IMAGE_BYTES, { min: 1 });

294297

const out: ToolContentBlock[] = [];

295298

let mediaPathHint: string | undefined;

296299
Original file line numberDiff line numberDiff line change

@@ -1,12 +1,16 @@

1+

import {

2+

resolveIntegerOption as resolveSharedIntegerOption,

3+

resolveNonNegativeIntegerOption as resolveSharedNonNegativeIntegerOption,

4+

} from "../shared/number-coercion.js";

5+
16

export function resolveNonNegativeIntegerOption(value: number, fallback: number): number {

2-

return Number.isFinite(value) ? Math.max(0, Math.floor(value)) : fallback;

7+

return resolveSharedNonNegativeIntegerOption(value, fallback);

38

}

49
510

export function resolveIntegerOption(

611

value: number,

712

fallback: number,

813

params: { min: number },

914

): number {

10-

const candidate = Number.isFinite(value) ? value : fallback;

11-

return Math.max(params.min, Math.floor(candidate));

15+

return resolveSharedIntegerOption(value, fallback, params);

1216

}

Original file line numberDiff line numberDiff line change

@@ -4,6 +4,8 @@ import {

44

asFiniteNumberInRange,

55

asSafeIntegerInRange,

66

parseFiniteNumber,

7+

resolveIntegerOption,

8+

resolveNonNegativeIntegerOption,

79

parseStrictFiniteNumber,

810

parseStrictInteger,

911

parseStrictNonNegativeInteger,

@@ -65,4 +67,13 @@ describe("number-coercion", () => {

6567

expect(parseStrictNonNegativeInteger("0")).toBe(0);

6668

expect(parseStrictNonNegativeInteger("-1")).toBeUndefined();

6769

});

70+
71+

test("integer option helpers floor finite values and fall back for non-finite values", () => {

72+

expect(resolveIntegerOption(7.9, 1, { min: 1, max: 10 })).toBe(7);

73+

expect(resolveIntegerOption(Number.NaN, 4.9, { min: 1 })).toBe(4);

74+

expect(resolveIntegerOption(Number.NEGATIVE_INFINITY, 4, { min: 1 })).toBe(4);

75+

expect(resolveIntegerOption(-4, 1, { min: 0 })).toBe(0);

76+

expect(resolveIntegerOption(40, 1, { max: 10 })).toBe(10);

77+

expect(resolveNonNegativeIntegerOption(Number.NaN, 3.9)).toBe(3);

78+

});

6879

});

Original file line numberDiff line numberDiff line change

@@ -93,6 +93,24 @@ export function asPositiveSafeInteger(value: unknown): number | undefined {

9393

return typeof value === "number" && Number.isSafeInteger(value) && value > 0 ? value : undefined;

9494

}

9595
96+

export function resolveIntegerOption(

97+

value: unknown,

98+

fallback: number,

99+

range: {

100+

min?: number;

101+

max?: number;

102+

} = {},

103+

): number {

104+

const candidate = typeof value === "number" && Number.isFinite(value) ? value : fallback;

105+

const floored = Math.floor(candidate);

106+

const minBounded = range.min === undefined ? floored : Math.max(range.min, floored);

107+

return range.max === undefined ? minBounded : Math.min(range.max, minBounded);

108+

}

109+
110+

export function resolveNonNegativeIntegerOption(value: unknown, fallback: number): number {

111+

return resolveIntegerOption(value, fallback, { min: 0 });

112+

}

113+
96114

export function parseStrictPositiveInteger(value: unknown): number | undefined {

97115

const parsed = parseStrictInteger(value);

98116

return parsed !== undefined && parsed > 0 ? parsed : undefined;