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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Proofpoint News Feed
D
Docker
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
IT之家
IT之家
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
B
Blog
D
DataBreaches.Net

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: validate web search count integers · openclaw/opencl...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -7,11 +7,12 @@ import {

77

buildSearchCacheKey,

88

DEFAULT_SEARCH_COUNT,

99

formatCliCommand,

10+

MAX_SEARCH_COUNT,

1011

normalizeFreshness,

1112

parseIsoDateRange,

1213

readCachedSearchPayload,

1314

readConfiguredSecretString,

14-

readNumberParam,

15+

readPositiveIntegerParam,

1516

readProviderEnvValue,

1617

readStringParam,

1718

resolveSearchCacheTtlMs,

@@ -351,7 +352,12 @@ export async function executeBraveSearch(

351352

const braveEndpointMode = await validateBraveBaseUrl(braveBaseUrl);

352353

const query = readStringParam(args, "query", { required: true });

353354

const count =

354-

readNumberParam(args, "count", { integer: true }) ?? searchConfig?.maxResults ?? undefined;

355+

readPositiveIntegerParam(args, "count", {

356+

max: MAX_SEARCH_COUNT,

357+

message: `count must be an integer from 1 to ${MAX_SEARCH_COUNT}.`,

358+

}) ??

359+

searchConfig?.maxResults ??

360+

undefined;

355361

const country = normalizeBraveCountry(readStringParam(args, "country"));

356362

const language = readStringParam(args, "language");

357363

const search_lang = readStringParam(args, "search_lang");

Original file line numberDiff line numberDiff line change

@@ -28,7 +28,7 @@ const BraveSearchSchema = {

2828

properties: {

2929

query: { type: "string", description: "Search query string." },

3030

count: {

31-

type: "number",

31+

type: "integer",

3232

description: "Number of results to return (1-10).",

3333

minimum: 1,

3434

maximum: 10,

Original file line numberDiff line numberDiff line change

@@ -85,6 +85,24 @@ describe("duckduckgo web search provider", () => {

8585

});

8686

});

8787
88+

it("rejects fractional and out-of-range counts before searching", async () => {

89+

const provider = createDuckDuckGoWebSearchProvider();

90+

const tool = provider.createTool({

91+

config: { test: true },

92+

} as never);

93+

if (!tool) {

94+

throw new Error("Expected tool definition");

95+

}

96+
97+

await expect(tool.execute({ query: "openclaw docs", count: 4.5 })).rejects.toThrow(

98+

"count must be an integer from 1 to 10.",

99+

);

100+

await expect(tool.execute({ query: "openclaw docs", count: 11 })).rejects.toThrow(

101+

"count must be an integer from 1 to 10.",

102+

);

103+

expect(runDuckDuckGoSearch).not.toHaveBeenCalled();

104+

});

105+
88106

it("reads region from plugin config and normalizes empty values away", () => {

89107

expect(

90108

resolveDdgRegion({

Original file line numberDiff line numberDiff line change

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

1-

import { readNumberParam, readStringParam } from "openclaw/plugin-sdk/param-readers";

1+

import { readPositiveIntegerParam, readStringParam } from "openclaw/plugin-sdk/param-readers";

22

import type { WebSearchProviderPlugin } from "openclaw/plugin-sdk/provider-web-search-contract";

33

import { createDuckDuckGoWebSearchProviderBase } from "./ddg-search-provider.shared.js";

44

@@ -16,7 +16,7 @@ const DuckDuckGoSearchSchema = {

1616

properties: {

1717

query: { type: "string", description: "Search query string." },

1818

count: {

19-

type: "number",

19+

type: "integer",

2020

description: "Number of results to return (1-10).",

2121

minimum: 1,

2222

maximum: 10,

@@ -45,7 +45,10 @@ export function createDuckDuckGoWebSearchProvider(): WebSearchProviderPlugin {

4545

return await runDuckDuckGoSearch({

4646

config: ctx.config,

4747

query: readStringParam(args, "query", { required: true }),

48-

count: readNumberParam(args, "count", { integer: true }),

48+

count: readPositiveIntegerParam(args, "count", {

49+

max: 10,

50+

message: "count must be an integer from 1 to 10.",

51+

}),

4952

region: readStringParam(args, "region"),

5053

safeSearch: readStringParam(args, "safeSearch") as

5154

| "strict"

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import {

55

parseIsoDateRange,

66

readCachedSearchPayload,

77

readConfiguredSecretString,

8-

readNumberParam,

8+

readPositiveIntegerParam,

99

readProviderEnvValue,

1010

readStringParam,

1111

resolveProviderWebSearchPluginConfig,

@@ -474,7 +474,12 @@ export async function executeExaWebSearchProviderTool(

474474

? (rawType as ExaSearchType)

475475

: "auto";

476476

const count =

477-

readNumberParam(params, "count", { integer: true }) ?? searchConfig?.maxResults ?? undefined;

477+

readPositiveIntegerParam(params, "count", {

478+

max: EXA_MAX_SEARCH_COUNT,

479+

message: `count must be an integer from 1 to ${EXA_MAX_SEARCH_COUNT}.`,

480+

}) ??

481+

searchConfig?.maxResults ??

482+

undefined;

478483

const rawFreshness = readStringParam(params, "freshness");

479484

const freshness = normalizeExaFreshness(rawFreshness);

480485

if (rawFreshness && !freshness) {

Original file line numberDiff line numberDiff line change

@@ -19,7 +19,7 @@ const ExaSearchSchema = {

1919

properties: {

2020

query: { type: "string", description: "Search query string." },

2121

count: {

22-

type: "number",

22+

type: "integer",

2323

description: "Number of results to return (1-100, subject to Exa search-type limits).",

2424

minimum: 1,

2525

maximum: EXA_MAX_SEARCH_COUNT,

Original file line numberDiff line numberDiff line change

@@ -7,11 +7,12 @@ import {

77

buildSearchCacheKey,

88

buildUnsupportedSearchFilterResponse,

99

DEFAULT_SEARCH_COUNT,

10+

MAX_SEARCH_COUNT,

1011

normalizeFreshness,

1112

parseIsoDateRange,

1213

readCachedSearchPayload,

1314

readConfiguredSecretString,

14-

readNumberParam,

15+

readPositiveIntegerParam,

1516

readProviderEnvValue,

1617

readStringParam,

1718

resolveCitationRedirectUrl,

@@ -318,7 +319,12 @@ export async function executeGeminiSearch(

318319
319320

const query = readStringParam(args, "query", { required: true });

320321

const count =

321-

readNumberParam(args, "count", { integer: true }) ?? searchConfig?.maxResults ?? undefined;

322+

readPositiveIntegerParam(args, "count", {

323+

max: MAX_SEARCH_COUNT,

324+

message: `count must be an integer from 1 to ${MAX_SEARCH_COUNT}.`,

325+

}) ??

326+

searchConfig?.maxResults ??

327+

undefined;

322328

const model = resolveGeminiModel(geminiConfig);

323329

const baseUrl = resolveGeminiBaseUrl(geminiConfig);

324330

const cacheKey = buildSearchCacheKey([

Original file line numberDiff line numberDiff line change

@@ -30,7 +30,7 @@ const GEMINI_TOOL_PARAMETERS = {

3030

properties: {

3131

query: { type: "string", description: "Search query string." },

3232

count: {

33-

type: "number",

33+

type: "integer",

3434

description: "Number of results to return (1-10).",

3535

minimum: 1,

3636

maximum: 10,

Original file line numberDiff line numberDiff line change

@@ -10,9 +10,10 @@ import {

1010

mergeScopedSearchConfig,

1111

readCachedSearchPayload,

1212

readConfiguredSecretString,

13-

readNumberParam,

13+

readPositiveIntegerParam,

1414

readProviderEnvValue,

1515

readStringParam,

16+

MAX_SEARCH_COUNT,

1617

resolveProviderWebSearchPluginConfig,

1718

resolveSearchCacheTtlMs,

1819

resolveSearchCount,

@@ -214,7 +215,12 @@ export async function executeMiniMaxWebSearchProviderTool(

214215

const params = args;

215216

const query = readStringParam(params, "query", { required: true });

216217

const count =

217-

readNumberParam(params, "count", { integer: true }) ?? searchConfig?.maxResults ?? undefined;

218+

readPositiveIntegerParam(params, "count", {

219+

max: MAX_SEARCH_COUNT,

220+

message: `count must be an integer from 1 to ${MAX_SEARCH_COUNT}.`,

221+

}) ??

222+

searchConfig?.maxResults ??

223+

undefined;

218224
219225

const resolvedCount = resolveSearchCount(count, DEFAULT_SEARCH_COUNT);

220226

const endpoint = resolveMiniMaxEndpoint(searchConfig, config);

Original file line numberDiff line numberDiff line change

@@ -25,7 +25,7 @@ const MiniMaxSearchSchema = {

2525

properties: {

2626

query: { type: "string", description: "Search query string." },

2727

count: {

28-

type: "number",

28+

type: "integer",

2929

description: "Number of results to return (1-10).",

3030

minimum: 1,

3131

maximum: 10,