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

推荐订阅源

D
Docker
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
T
Tailwind CSS Blog
U
Unit 42
C
Check Point Blog
S
SegmentFault 最新的问题
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
罗磊的独立博客
小众软件
小众软件
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
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(agents): clean Gemini tool schemas by model id (#9155...
Pick-cat · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -29,13 +29,17 @@ function resolveToolParameterSchemaCacheKey(

2929

): string {

3030

const normalizedProvider = normalizeLowercaseStringOrEmpty(options?.modelProvider);

3131

const normalizedModelId = normalizeLowercaseStringOrEmpty(options?.modelId);

32+

const toolSchemaProfile = normalizeLowercaseStringOrEmpty(

33+

options?.modelCompat?.toolSchemaProfile,

34+

);

3235

const unsupportedKeywords = Array.from(

3336

resolveUnsupportedToolSchemaKeywords(options?.modelCompat),

3437

).toSorted();

3538

const omitEmptyArrayItems = shouldOmitEmptyArrayItems(options?.modelCompat);

3639

return JSON.stringify([

3740

normalizedProvider,

3841

normalizedModelId,

42+

toolSchemaProfile,

3943

unsupportedKeywords,

4044

omitEmptyArrayItems,

4145

]);

@@ -57,6 +61,10 @@ function rememberCachedToolParameterSchema(schema: object, key: string, value: T

5761

return value;

5862

}

5963
64+

function isGeminiModelId(modelId: string): boolean {

65+

return /(?:^|[/:])gemini(?:$|[-/:.])/.test(modelId);

66+

}

67+
6068

function extractEnumValues(schema: unknown): unknown[] | undefined {

6169

if (!schema || typeof schema !== "object") {

6270

return undefined;

@@ -769,8 +777,15 @@ function normalizeToolParameterSchemaUncached(

769777

//

770778

// Normalize once here so callers can always pass `tools` through unchanged.

771779

const normalizedProvider = normalizeLowercaseStringOrEmpty(options?.modelProvider);

780+

const normalizedModelId = normalizeLowercaseStringOrEmpty(options?.modelId);

781+

const normalizedToolSchemaProfile = normalizeLowercaseStringOrEmpty(

782+

options?.modelCompat?.toolSchemaProfile,

783+

);

772784

const isGeminiProvider =

773-

normalizedProvider.includes("google") || normalizedProvider.includes("gemini");

785+

normalizedProvider.includes("google") ||

786+

normalizedProvider.includes("gemini") ||

787+

isGeminiModelId(normalizedModelId) ||

788+

normalizedToolSchemaProfile === "gemini";

774789

const isAnthropicProvider = normalizedProvider.includes("anthropic");

775790

const unsupportedToolSchemaKeywords = resolveUnsupportedToolSchemaKeywords(options?.modelCompat);

776791

const omitEmptyArrayItems = shouldOmitEmptyArrayItems(options?.modelCompat);

@@ -781,7 +796,13 @@ function normalizeToolParameterSchemaUncached(

781796

? stripEmptyArrayItemsFromArraySchemas(normalizedSchema)

782797

: normalizedSchema;

783798

if (isGeminiProvider && !isAnthropicProvider) {

784-

return cleanSchemaForGemini(arrayItemsCompatibleSchema);

799+

const geminiCompatibleSchema = cleanSchemaForGemini(arrayItemsCompatibleSchema);

800+

return unsupportedToolSchemaKeywords.size > 0

801+

? (stripUnsupportedSchemaKeywords(

802+

geminiCompatibleSchema,

803+

unsupportedToolSchemaKeywords,

804+

) as TSchema)

805+

: geminiCompatibleSchema;

785806

}

786807

if (unsupportedToolSchemaKeywords.size > 0) {

787808

return stripUnsupportedSchemaKeywords(

Original file line numberDiff line numberDiff line change

@@ -43,6 +43,93 @@ describe("normalizeToolParameterSchema", () => {

4343

expect(providerSpecific).toEqual(first);

4444

});

4545
46+

it("uses Gemini cleanup for OpenAI-compatible providers when the model id is Gemini", () => {

47+

const schema = {

48+

type: "object",

49+

properties: {

50+

sessionKey: {

51+

description: "Explicit session key, or null to clear it",

52+

anyOf: [{ type: "string" }, { type: "null" }],

53+

},

54+

},

55+

};

56+
57+

expect(

58+

normalizeToolParameterSchema(schema, {

59+

modelProvider: "jjcc",

60+

modelId: "gemini-3.1-pro-preview",

61+

}),

62+

).toEqual({

63+

type: "object",

64+

properties: {

65+

sessionKey: {

66+

type: "string",

67+

description: "Explicit session key, or null to clear it",

68+

},

69+

},

70+

});

71+

expect(

72+

normalizeToolParameterSchema(schema, {

73+

modelProvider: "stepfun",

74+

modelId: "step-router-v1",

75+

}),

76+

).toEqual(schema);

77+

});

78+
79+

it("keeps normalized tool-schema profile behavior aligned with the cache key", () => {

80+

const schema = {

81+

type: "object",

82+

properties: {

83+

sessionKey: {

84+

anyOf: [{ type: "string" }, { type: "null" }],

85+

},

86+

},

87+

};

88+
89+

const defaultSchema = normalizeToolParameterSchema(schema, {

90+

modelProvider: "openai-compatible",

91+

modelId: "custom-model",

92+

});

93+

const mixedCaseGeminiProfileSchema = normalizeToolParameterSchema(schema, {

94+

modelProvider: "openai-compatible",

95+

modelId: "custom-model",

96+

modelCompat: { toolSchemaProfile: "Gemini" },

97+

});

98+
99+

expect(defaultSchema).toEqual(schema);

100+

expect(mixedCaseGeminiProfileSchema).toEqual({

101+

type: "object",

102+

properties: {

103+

sessionKey: { type: "string" },

104+

},

105+

});

106+

});

107+
108+

it("applies explicit unsupported keyword stripping after Gemini cleanup", () => {

109+

expect(

110+

normalizeToolParameterSchema(

111+

{

112+

type: "object",

113+

properties: {

114+

count: {

115+

anyOf: [{ type: "integer", vendorOnly: true }, { type: "null" }],

116+

},

117+

},

118+

},

119+

{

120+

modelProvider: "jjcc",

121+

modelId: "gemini-3.1-pro-preview",

122+

modelCompat: { unsupportedToolSchemaKeywords: ["vendorOnly"] },

123+

},

124+

),

125+

).toEqual({

126+

type: "object",

127+

properties: {

128+

count: { type: "integer" },

129+

},

130+

});

131+

});

132+
46133

it("normalizes truly empty schemas to type:object with properties:{}", () => {

47134

expect(normalizeToolParameterSchema({})).toEqual({

48135

type: "object",

Original file line numberDiff line numberDiff line change

@@ -33,6 +33,10 @@ describe("createCronToolSchema", () => {

3333

const providerSchemaRecord = normalizeToolParameterSchema(createCronToolSchema(), {

3434

modelProvider: "gemini",

3535

}) as unknown as Record<string, unknown>;

36+

const jjccGeminiSchemaRecord = normalizeToolParameterSchema(createCronToolSchema(), {

37+

modelProvider: "jjcc",

38+

modelId: "gemini-3.1-pro-preview",

39+

}) as unknown as Record<string, unknown>;

3640
3741

// Regression: models like GPT-5.4 rely on these fields to populate job/patch.

3842

// If a field is removed from this list the test must be updated intentionally.

@@ -254,6 +258,22 @@ describe("createCronToolSchema", () => {

254258

expect(patchProps?.payload?.properties?.model?.description).toMatch(/null to clear/i);

255259

});

256260
261+

it("projects nullable cron fields for Gemini models behind OpenAI-compatible providers", () => {

262+

expect(propertyAt(jjccGeminiSchemaRecord, "job.agentId")).toMatchObject({

263+

type: "string",

264+

});

265+

expect(propertyAt(jjccGeminiSchemaRecord, "job.sessionKey")).toMatchObject({

266+

type: "string",

267+

});

268+

expect(propertyAt(jjccGeminiSchemaRecord, "patch.payload.toolsAllow")).toMatchObject({

269+

type: "array",

270+

});

271+

expect(propertyAt(jjccGeminiSchemaRecord, "patch.delivery.channel")).toMatchObject({

272+

type: "string",

273+

});

274+

expect(JSON.stringify(jjccGeminiSchemaRecord)).not.toContain('"anyOf"');

275+

});

276+
257277

// Regression guard: ensure no OpenAPI 3.0 incompatible keywords leak into the

258278

// serialized provider-facing cron tool schema.

259279

it("serialized provider schema contains no type-array or not/const keywords", () => {