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

推荐订阅源

Y
Y Combinator Blog
GbyAI
GbyAI
U
Unit 42
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
D
DataBreaches.Net
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
罗磊的独立博客
B
Blog RSS Feed
J
Java Code Geeks
The GitHub Blog
The GitHub 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(deepseek): normalize mcp union tool schemas (#83848) ...
clawsweeper · 2026-05-19 · via Recent Commits to openclaw:main

@@ -394,13 +394,127 @@ export function inspectOpenAIToolSchemas(

394394

return [];

395395

}

396396397-

export type ProviderToolCompatFamily = "gemini" | "openai";

397+

export const DEEPSEEK_UNSUPPORTED_SCHEMA_KEYWORDS = new Set(["anyOf", "oneOf"]);

398+399+

function isNullSchemaVariant(schema: unknown): boolean {

400+

if (!schema || typeof schema !== "object" || Array.isArray(schema)) {

401+

return false;

402+

}

403+

const record = schema as Record<string, unknown>;

404+

if (record.type === "null") {

405+

return true;

406+

}

407+

if (Array.isArray(record.type) && record.type.length === 1 && record.type[0] === "null") {

408+

return true;

409+

}

410+

if ("const" in record && record.const === null) {

411+

return true;

412+

}

413+

return Array.isArray(record.enum) && record.enum.length === 1 && record.enum[0] === null;

414+

}

415+416+

function normalizeDeepSeekSchema(schema: unknown): unknown {

417+

if (Array.isArray(schema)) {

418+

let changed = false;

419+

const normalized = schema.map((entry) => {

420+

const next = normalizeDeepSeekSchema(entry);

421+

changed ||= next !== entry;

422+

return next;

423+

});

424+

return changed ? normalized : schema;

425+

}

426+

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

427+

return schema;

428+

}

429+430+

const record = schema as Record<string, unknown>;

431+

const unionKey = Array.isArray(record.anyOf)

432+

? "anyOf"

433+

: Array.isArray(record.oneOf)

434+

? "oneOf"

435+

: undefined;

436+437+

let changed = false;

438+

const normalized: Record<string, unknown> = {};

439+

for (const [key, value] of Object.entries(record)) {

440+

if (key === "anyOf" || key === "oneOf") {

441+

if (key === unionKey) {

442+

changed = true;

443+

continue;

444+

}

445+

}

446+

const next = normalizeDeepSeekSchema(value);

447+

normalized[key] = next;

448+

changed ||= next !== value;

449+

}

450+451+

if (!unionKey) {

452+

return changed ? normalized : schema;

453+

}

454+455+

const variants = record[unionKey] as unknown[];

456+

const normalizedVariants = variants.map((entry) => normalizeDeepSeekSchema(entry));

457+

const nonNullVariants = normalizedVariants.filter((entry) => !isNullSchemaVariant(entry));

458+

const selected = nonNullVariants[0] ?? normalizedVariants[0];

459+

if (!selected || typeof selected !== "object" || Array.isArray(selected)) {

460+

return normalized;

461+

}

462+463+

const merged = {

464+

...(selected as Record<string, unknown>),

465+

...normalized,

466+

};

467+

if (nonNullVariants.length < normalizedVariants.length) {

468+

merged.nullable = true;

469+

}

470+

return merged;

471+

}

472+473+

export function normalizeDeepSeekToolSchemas(

474+

ctx: ProviderNormalizeToolSchemasContext,

475+

): AnyAgentTool[] {

476+

return ctx.tools.map((tool) => {

477+

if (!tool.parameters || typeof tool.parameters !== "object") {

478+

return tool;

479+

}

480+

const parameters = normalizeDeepSeekSchema(tool.parameters);

481+

return parameters === tool.parameters

482+

? tool

483+

: {

484+

...tool,

485+

parameters: parameters as TSchema,

486+

};

487+

});

488+

}

489+490+

export function inspectDeepSeekToolSchemas(

491+

ctx: ProviderNormalizeToolSchemasContext,

492+

): ProviderToolSchemaDiagnostic[] {

493+

return ctx.tools.flatMap((tool, toolIndex) => {

494+

const violations = findUnsupportedSchemaKeywords(

495+

tool.parameters,

496+

`${tool.name}.parameters`,

497+

DEEPSEEK_UNSUPPORTED_SCHEMA_KEYWORDS,

498+

);

499+

if (violations.length === 0) {

500+

return [];

501+

}

502+

return [{ toolName: tool.name, toolIndex, violations }];

503+

});

504+

}

505+506+

export type ProviderToolCompatFamily = "deepseek" | "gemini" | "openai";

398507399508

export function buildProviderToolCompatFamilyHooks(family: ProviderToolCompatFamily): {

400509

normalizeToolSchemas: (ctx: ProviderNormalizeToolSchemasContext) => AnyAgentTool[];

401510

inspectToolSchemas: (ctx: ProviderNormalizeToolSchemasContext) => ProviderToolSchemaDiagnostic[];

402511

} {

403512

switch (family) {

513+

case "deepseek":

514+

return {

515+

normalizeToolSchemas: normalizeDeepSeekToolSchemas,

516+

inspectToolSchemas: inspectDeepSeekToolSchemas,

517+

};

404518

case "gemini":

405519

return {

406520

normalizeToolSchemas: normalizeGeminiToolSchemas,