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

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

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 tavily integer options · openclaw/openclaw@...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import type { OpenClawPluginToolContext } from "openclaw/plugin-sdk/plugin-entry

33

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-runtime";

44

import {

55

jsonResult,

6-

readNumberParam,

6+

readPositiveIntegerParam,

77

readStringParam,

88

} from "openclaw/plugin-sdk/provider-web-search";

99

import { Type } from "typebox";

@@ -38,7 +38,7 @@ const TavilyExtractToolSchema = Type.Object(

3838

description: '"basic" (default) or "advanced" (for JS-heavy pages).',

3939

}),

4040

chunks_per_source: Type.Optional(

41-

Type.Number({

41+

Type.Integer({

4242

description: "Chunks per URL (1-5, requires query).",

4343

minimum: 1,

4444

maximum: 5,

@@ -69,8 +69,9 @@ export function createTavilyExtractTool(api: OpenClawPluginApi, ctx?: TavilyTool

6969

}

7070

const query = readStringParam(rawParams, "query") || undefined;

7171

const extractDepth = readStringParam(rawParams, "extract_depth") || undefined;

72-

const chunksPerSource = readNumberParam(rawParams, "chunks_per_source", {

73-

integer: true,

72+

const chunksPerSource = readPositiveIntegerParam(rawParams, "chunks_per_source", {

73+

max: 5,

74+

message: "chunks_per_source must be an integer from 1 to 5.",

7475

});

7576

if (chunksPerSource !== undefined && !query) {

7677

throw new Error("tavily_extract requires query when chunks_per_source is set.");

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import type { OpenClawPluginToolContext } from "openclaw/plugin-sdk/plugin-entry

33

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-runtime";

44

import {

55

jsonResult,

6-

readNumberParam,

6+

readPositiveIntegerParam,

77

readStringParam,

88

} from "openclaw/plugin-sdk/provider-web-search";

99

import { Type } from "typebox";

@@ -32,7 +32,7 @@ const TavilySearchToolSchema = Type.Object(

3232

description: 'Search topic: "general" (default), "news", or "finance".',

3333

}),

3434

max_results: Type.Optional(

35-

Type.Number({

35+

Type.Integer({

3636

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

3737

minimum: 1,

3838

maximum: 20,

@@ -71,7 +71,10 @@ export function createTavilySearchTool(api: OpenClawPluginApi, ctx?: TavilyToolC

7171

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

7272

const searchDepth = readStringParam(rawParams, "search_depth") || undefined;

7373

const topic = readStringParam(rawParams, "topic") || undefined;

74-

const maxResults = readNumberParam(rawParams, "max_results", { integer: true });

74+

const maxResults = readPositiveIntegerParam(rawParams, "max_results", {

75+

max: 20,

76+

message: "max_results must be an integer from 1 to 20.",

77+

});

7578

const includeAnswer = rawParams.include_answer === true;

7679

const timeRange = readStringParam(rawParams, "time_range") || undefined;

7780

const includeDomains = Array.isArray(rawParams.include_domains)

Original file line numberDiff line numberDiff line change

@@ -297,6 +297,41 @@ describe("tavily tools", () => {

297297

expect(runTavilyExtract).not.toHaveBeenCalled();

298298

});

299299
300+

it("rejects fractional and out-of-range integer options before Tavily calls", async () => {

301+

const searchTool = createTavilySearchTool(fakeApi());

302+

await expect(

303+

searchTool.execute("search-call", {

304+

query: "openclaw",

305+

max_results: 5.5,

306+

}),

307+

).rejects.toThrow("max_results must be an integer from 1 to 20.");

308+

await expect(

309+

searchTool.execute("search-call", {

310+

query: "openclaw",

311+

max_results: 21,

312+

}),

313+

).rejects.toThrow("max_results must be an integer from 1 to 20.");

314+
315+

const extractTool = createTavilyExtractTool(fakeApi());

316+

await expect(

317+

extractTool.execute("extract-call", {

318+

urls: ["https://example.com"],

319+

query: "pricing",

320+

chunks_per_source: 2.5,

321+

}),

322+

).rejects.toThrow("chunks_per_source must be an integer from 1 to 5.");

323+

await expect(

324+

extractTool.execute("extract-call", {

325+

urls: ["https://example.com"],

326+

query: "pricing",

327+

chunks_per_source: 6,

328+

}),

329+

).rejects.toThrow("chunks_per_source must be an integer from 1 to 5.");

330+
331+

expect(runTavilySearch).not.toHaveBeenCalled();

332+

expect(runTavilyExtract).not.toHaveBeenCalled();

333+

});

334+
300335

it("reads plugin web search config and prefers it over env defaults", () => {

301336

vi.stubEnv("TAVILY_API_KEY", "env-key");

302337

vi.stubEnv("TAVILY_BASE_URL", "https://env.tavily.test");

Original file line numberDiff line numberDiff line change

@@ -102,6 +102,12 @@ describe("readNumberParam", () => {

102102

message: "timeoutMs must be a positive integer in milliseconds.",

103103

}),

104104

).toThrow("timeoutMs must be a positive integer in milliseconds.");

105+

expect(() =>

106+

readPositiveIntegerParam({ maxResults: 21 }, "maxResults", {

107+

max: 20,

108+

message: "maxResults must be an integer from 1 to 20",

109+

}),

110+

).toThrow("maxResults must be an integer from 1 to 20");

105111

});

106112

});

107113
Original file line numberDiff line numberDiff line change

@@ -211,6 +211,7 @@ export function readPositiveIntegerParam(

211211

key: string,

212212

options: {

213213

message?: string;

214+

max?: number;

214215

} = {},

215216

): number | undefined {

216217

const value = readNumberParam(params, key, {

@@ -220,6 +221,9 @@ export function readPositiveIntegerParam(

220221

if (value === undefined && readParamRaw(params, key) !== undefined) {

221222

throw new ToolInputError(options.message ?? `${key} must be a positive integer`);

222223

}

224+

if (value !== undefined && options.max !== undefined && value > options.max) {

225+

throw new ToolInputError(options.message ?? `${key} must be a positive integer`);

226+

}

223227

return value;

224228

}

225229
Original file line numberDiff line numberDiff line change

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

1010

export {

1111

jsonResult,

1212

readNumberParam,

13+

readPositiveIntegerParam,

1314

readStringArrayParam,

1415

readStringParam,

1516

} from "../agents/tools/common.js";