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

推荐订阅源

Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
量子位
美团技术团队
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
月光博客
月光博客

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(xai): wrap malformed tool json · openclaw/openclaw@ff...
vincentkoc · 2026-05-15 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -83,6 +83,7 @@ Docs: https://docs.openclaw.ai

8383

- ComfyUI: report malformed workflow API JSON responses with owned errors instead of leaking raw parser failures.

8484

- DeepInfra video: report malformed successful API JSON responses with provider-owned errors instead of leaking raw parser failures.

8585

- Brave Search: report malformed web and LLM-context API JSON with provider-owned errors instead of leaking raw parser failures.

86+

- xAI tools: report malformed web search, X search, and code execution JSON with provider-owned errors instead of leaking raw parser failures.

8687

- Twilio voice-call: report malformed successful API JSON responses with provider-owned errors instead of leaking raw parser failures.

8788

- Voice-call provider APIs: report malformed successful guarded JSON responses with provider-prefixed errors instead of leaking raw parser failures.

8889

- Realtime transcription: report malformed provider websocket JSON frames with owned parser errors instead of leaking raw `SyntaxError` objects.

Original file line numberDiff line numberDiff line change

@@ -175,6 +175,37 @@ describe("xai code_execution tool", () => {

175175

expect(firstAuthorizationHeader(mockFetch)).toBe("Bearer xai-plugin-key");

176176

});

177177
178+

it("reports malformed code_execution JSON as a provider error", async () => {

179+

const mockFetch = vi.fn((_input?: unknown, _init?: unknown) =>

180+

Promise.resolve({

181+

ok: true,

182+

json: () => Promise.reject(new SyntaxError("Unexpected token")),

183+

} as Response),

184+

);

185+

global.fetch = withFetchPreconnect(mockFetch);

186+

const tool = createCodeExecutionTool({

187+

config: {

188+

plugins: {

189+

entries: {

190+

xai: {

191+

config: {

192+

webSearch: {

193+

apiKey: "xai-plugin-key", // pragma: allowlist secret

194+

},

195+

},

196+

},

197+

},

198+

},

199+

},

200+

});

201+
202+

await expect(

203+

tool?.execute?.("code-execution:malformed-json", {

204+

task: "Calculate the mean of [40, 42, 44]",

205+

}),

206+

).rejects.toThrow("xAI code execution failed: malformed JSON response");

207+

});

208+
178209

it("reuses the legacy grok web search key for code_execution requests", async () => {

179210

const mockFetch = installCodeExecutionFetch();

180211

const tool = createCodeExecutionTool({

Original file line numberDiff line numberDiff line change

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

1+

import { readProviderJsonResponse } from "openclaw/plugin-sdk/provider-http";

12

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

23

import {

34

buildXaiResponsesToolBody,

@@ -81,7 +82,10 @@ export async function requestXaiCodeExecution(params: {

8182

errorLabel: "xAI",

8283

},

8384

async (response) => {

84-

const data = (await response.json()) as XaiCodeExecutionResponse;

85+

const data = await readProviderJsonResponse<XaiCodeExecutionResponse>(

86+

response,

87+

"xAI code execution failed",

88+

);

8589

const { content, citations } = resolveXaiResponseTextAndCitations(data);

8690

const outputTypes = Array.isArray(data.output)

8791

? [

Original file line numberDiff line numberDiff line change

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

1+

import { readProviderJsonResponse } from "openclaw/plugin-sdk/provider-http";

12

import { postTrustedWebToolsJson, wrapWebContent } from "openclaw/plugin-sdk/provider-web-search";

23

import { normalizeXaiModelId } from "../model-id.js";

34

import {

@@ -109,7 +110,10 @@ export async function requestXaiWebSearch(params: {

109110

errorLabel: "xAI",

110111

},

111112

async (response) => {

112-

const data = (await response.json()) as XaiWebSearchResponse;

113+

const data = await readProviderJsonResponse<XaiWebSearchResponse>(

114+

response,

115+

"xAI web search failed",

116+

);

113117

return resolveXaiResponseTextCitationsAndInline(data, params.inlineCitations);

114118

},

115119

).catch((error: unknown) => wrapXaiWebSearchError(error, params.timeoutSeconds));

Original file line numberDiff line numberDiff line change

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

1+

import { readProviderJsonResponse } from "openclaw/plugin-sdk/provider-http";

12

import { postTrustedWebToolsJson, wrapWebContent } from "openclaw/plugin-sdk/provider-web-search";

23

import {

34

buildXaiResponsesToolBody,

@@ -131,7 +132,10 @@ export async function requestXaiXSearch(params: {

131132

errorLabel: "xAI",

132133

},

133134

async (response) => {

134-

const data = (await response.json()) as XaiWebSearchResponse;

135+

const data = await readProviderJsonResponse<XaiWebSearchResponse>(

136+

response,

137+

"xAI X search failed",

138+

);

135139

return resolveXaiResponseTextCitationsAndInline(data, params.inlineCitations);

136140

},

137141

);

Original file line numberDiff line numberDiff line change

@@ -355,6 +355,36 @@ describe("xai web search config resolution", () => {

355355

expect(firstFetchUrl(mockFetch)).toBe("https://api.x.ai/proxy/v1/responses");

356356

});

357357
358+

it("reports malformed xAI web search JSON as a provider error", async () => {

359+

const mockFetch = vi.fn((_input?: unknown, _init?: unknown) =>

360+

Promise.resolve({

361+

ok: true,

362+

json: () => Promise.reject(new SyntaxError("Unexpected token")),

363+

} as Response),

364+

);

365+

global.fetch = withFetchPreconnect(mockFetch);

366+

const provider = createXaiWebSearchProvider();

367+

const tool = provider.createTool({

368+

config: {

369+

plugins: {

370+

entries: {

371+

xai: {

372+

config: {

373+

webSearch: {

374+

apiKey: "xai-test-key", // pragma: allowlist secret

375+

},

376+

},

377+

},

378+

},

379+

},

380+

},

381+

});

382+
383+

await expect(tool.execute({ query: "OpenClaw" })).rejects.toThrow(

384+

"xAI web search failed: malformed JSON response",

385+

);

386+

});

387+
358388

it("normalizes deprecated grok 4.20 beta model ids to GA ids", () => {

359389

expect(

360390

resolveXaiWebSearchModel({

Original file line numberDiff line numberDiff line change

@@ -290,6 +290,40 @@ describe("xai x_search tool", () => {

290290

expect(firstAuthorizationHeader(mockFetch)).toBe("Bearer xai-plugin-key");

291291

});

292292
293+

it("reports malformed x_search JSON as a provider error", async () => {

294+

const mockFetch = vi.fn((_input?: unknown, _init?: unknown) =>

295+

Promise.resolve({

296+

ok: true,

297+

json: () => Promise.reject(new SyntaxError("Unexpected token")),

298+

} as Response),

299+

);

300+

global.fetch = withFetchPreconnect(mockFetch);

301+

const tool = createXSearchTool({

302+

config: {

303+

plugins: {

304+

entries: {

305+

xai: {

306+

config: {

307+

webSearch: {

308+

apiKey: "xai-plugin-key", // pragma: allowlist secret

309+

},

310+

xSearch: {

311+

enabled: true,

312+

},

313+

},

314+

},

315+

},

316+

},

317+

},

318+

});

319+
320+

await expect(

321+

tool?.execute?.("x-search:malformed-json", {

322+

query: "latest post from huntharo",

323+

}),

324+

).rejects.toThrow("xAI X search failed: malformed JSON response");

325+

});

326+
293327

it("prefers the active runtime config for shared xAI keys", async () => {

294328

const mockFetch = installXSearchFetch();

295329

const tool = createXSearchTool({