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

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS 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
refactor: share provider HTTP error parsing · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,2 +1,2 @@

1-

b758a1c5503c08325113e0d6c9f1ac2db5a5fd9992a3902706ebe0f0dbbc1213 plugin-sdk-api-baseline.json

2-

2c9d0a00e526dcd47d131261b8ceddd8e59faa8530b129d108a3721a4cbcbea7 plugin-sdk-api-baseline.jsonl

1+

b86e6785acbd0f8f0f012691ce823c2e8d52bfd2507c2258408503162abb9adf plugin-sdk-api-baseline.json

2+

e10acbed6c7c1b21700e358411c73877bdc0cb59ce102bafe680e210a2ac741b plugin-sdk-api-baseline.jsonl

Original file line numberDiff line numberDiff line change

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

11

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

2+

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

23

import { normalizeResolvedSecretInputString } from "openclaw/plugin-sdk/secret-input";

34

import type {

45

SpeechDirectiveTokenParseContext,

@@ -297,9 +298,7 @@ export async function listElevenLabsVoices(params: {

297298

"xi-api-key": params.apiKey,

298299

},

299300

});

300-

if (!res.ok) {

301-

throw new Error(`ElevenLabs voices API error (${res.status})`);

302-

}

301+

await assertOkOrThrowProviderError(res, "ElevenLabs voices API error");

303302

const json = (await res.json()) as {

304303

voices?: Array<{

305304

voice_id?: string;

Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ import { isProviderApiKeyConfigured } from "openclaw/plugin-sdk/provider-auth";

66

import { resolveApiKeyForProvider } from "openclaw/plugin-sdk/provider-auth-runtime";

77

import {

88

assertOkOrThrowHttpError,

9+

assertOkOrThrowProviderError,

910

resolveProviderHttpRequestConfig,

1011

} from "openclaw/plugin-sdk/provider-http";

1112

import {

@@ -251,12 +252,7 @@ async function fetchImageBuffer(

251252

auditContext: "fal-image-download",

252253

});

253254

try {

254-

if (!response.ok) {

255-

const text = await response.text().catch(() => "");

256-

throw new Error(

257-

`fal image download failed (${response.status}): ${text || response.statusText}`,

258-

);

259-

}

255+

await assertOkOrThrowProviderError(response, "fal image download failed");

260256

const mimeType = response.headers.get("content-type")?.trim() || "image/png";

261257

const arrayBuffer = await response.arrayBuffer();

262258

return { buffer: Buffer.from(arrayBuffer), mimeType };

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ import {

99

sanitizeAndNormalizeEmbedding,

1010

withRemoteHttpResponse,

1111

} from "openclaw/plugin-sdk/memory-core-host-engine-embeddings";

12+

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

1213

import type { GeminiEmbeddingClient, GeminiTextEmbeddingRequest } from "./embedding-provider.js";

1314
1415

export type GeminiBatchRequest = {

@@ -179,8 +180,7 @@ async function fetchGeminiBatchStatus(params: {

179180

},

180181

onResponse: async (res) => {

181182

if (!res.ok) {

182-

const text = await res.text();

183-

throw new Error(`gemini batch status failed: ${res.status} ${text}`);

183+

throw await createProviderHttpError(res, "gemini batch status failed");

184184

}

185185

return (await res.json()) as GeminiBatchStatus;

186186

},

@@ -203,8 +203,7 @@ async function fetchGeminiFileContent(params: {

203203

},

204204

onResponse: async (res) => {

205205

if (!res.ok) {

206-

const text = await res.text();

207-

throw new Error(`gemini batch file content failed: ${res.status} ${text}`);

206+

throw await createProviderHttpError(res, "gemini batch file content failed");

208207

}

209208

return await res.text();

210209

},

Original file line numberDiff line numberDiff line change

@@ -15,6 +15,7 @@ import {

1515

requireApiKey,

1616

resolveApiKeyForProvider,

1717

} from "openclaw/plugin-sdk/provider-auth-runtime";

18+

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

1819

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

1920

import { normalizeOptionalString } from "openclaw/plugin-sdk/text-runtime";

2021

@@ -189,8 +190,7 @@ async function fetchGeminiEmbeddingPayload(params: {

189190

},

190191

onResponse: async (res) => {

191192

if (!res.ok) {

192-

const text = await res.text();

193-

throw new Error(`gemini embeddings failed: ${res.status} ${text}`);

193+

throw await createProviderHttpError(res, "gemini embeddings failed");

194194

}

195195

return (await res.json()) as {

196196

embedding?: { values?: number[] };

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,7 @@

1+

import {

2+

createProviderHttpError,

3+

formatProviderHttpErrorMessage,

4+

} from "openclaw/plugin-sdk/provider-http";

15

import {

26

buildSearchCacheKey,

37

buildUnsupportedSearchFilterResponse,

@@ -81,11 +85,8 @@ async function runGeminiSearch(params: {

8185

},

8286

async (res) => {

8387

if (!res.ok) {

84-

const safeDetail = ((await res.text()) || res.statusText).replace(

85-

/key=[^&\s]+/giu,

86-

"key=***",

87-

);

88-

throw new Error(`Gemini API error (${res.status}): ${safeDetail}`);

88+

const error = await createProviderHttpError(res, "Gemini API error");

89+

throw new Error(error.message.replace(/key=[^&\s]+/giu, "key=***"));

8990

}

9091
9192

let data: GeminiGroundingResponse;

@@ -99,7 +100,11 @@ async function runGeminiSearch(params: {

99100

if (data.error) {

100101

const rawMessage = data.error.message || data.error.status || "unknown";

101102

throw new Error(

102-

`Gemini API error (${data.error.code}): ${rawMessage.replace(/key=[^&\s]+/giu, "key=***")}`,

103+

formatProviderHttpErrorMessage({

104+

label: "Gemini API error",

105+

status: data.error.code ?? 0,

106+

detail: rawMessage.replace(/key=[^&\s]+/giu, "key=***"),

107+

}),

103108

);

104109

}

105110
Original file line numberDiff line numberDiff line change

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

77

type SimpleStreamOptions,

88

type ThinkingLevel,

99

} from "@mariozechner/pi-ai";

10+

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

1011

import {

1112

buildGuardedModelFetch,

1213

coerceTransportToolCallArguments,

@@ -631,8 +632,7 @@ export function createGoogleGenerativeAiTransportStreamFn(): StreamFn {

631632

signal: options?.signal,

632633

});

633634

if (!response.ok) {

634-

const message = await response.text().catch(() => "");

635-

throw new Error(`Google Generative AI API error (${response.status}): ${message}`);

635+

throw await createProviderHttpError(response, "Google Generative AI API error");

636636

}

637637

stream.push({ type: "start", partial: output as never });

638638

let currentBlockIndex = -1;

Original file line numberDiff line numberDiff line change

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

66

generateSecMsGecToken,

77

} from "node-edge-tts/dist/drm.js";

88

import { isVoiceCompatibleAudio } from "openclaw/plugin-sdk/media-runtime";

9+

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

910

import {

1011

captureHttpExchange,

1112

isDebugProxyGlobalFetchPatchInstalled,

@@ -153,9 +154,7 @@ export async function listMicrosoftVoices(): Promise<SpeechVoiceOption[]> {

153154

},

154155

});

155156

}

156-

if (!response.ok) {

157-

throw new Error(`Microsoft voices API error (${response.status})`);

158-

}

157+

await assertOkOrThrowProviderError(response, "Microsoft voices API error");

159158

const voices = (await response.json()) as MicrosoftVoiceListEntry[];

160159

return Array.isArray(voices)

161160

? voices

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,7 @@

1+

import {

2+

createProviderHttpError,

3+

formatProviderHttpErrorMessage,

4+

} from "openclaw/plugin-sdk/provider-http";

15

import {

26

DEFAULT_SEARCH_COUNT,

37

buildSearchCacheKey,

@@ -134,15 +138,18 @@ async function runMiniMaxSearch(params: {

134138

},

135139

async (res) => {

136140

if (!res.ok) {

137-

const detail = await res.text();

138-

throw new Error(`MiniMax Search API error (${res.status}): ${detail || res.statusText}`);

141+

throw await createProviderHttpError(res, "MiniMax Search API error");

139142

}

140143
141144

const data = (await res.json()) as MiniMaxSearchResponse;

142145
143146

if (data.base_resp?.status_code && data.base_resp.status_code !== 0) {

144147

throw new Error(

145-

`MiniMax Search API error (${data.base_resp.status_code}): ${data.base_resp.status_msg || "unknown error"}`,

148+

formatProviderHttpErrorMessage({

149+

label: "MiniMax Search API error",

150+

status: data.base_resp.status_code,

151+

detail: data.base_resp.status_msg || "unknown error",

152+

}),

146153

);

147154

}

148155
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

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

2+
13

export const DEFAULT_MINIMAX_TTS_BASE_URL = "https://api.minimax.io";

24
35

export const MINIMAX_TTS_MODELS = ["speech-2.8-hd", "speech-01-240228"] as const;

@@ -72,10 +74,7 @@ export async function minimaxTTS(params: {

7274

signal: controller.signal,

7375

});

7476
75-

if (!response.ok) {

76-

const errBody = await response.text().catch(() => "");

77-

throw new Error(`MiniMax TTS API error (${response.status})${errBody ? `: ${errBody}` : ""}`);

78-

}

77+

await assertOkOrThrowProviderError(response, "MiniMax TTS API error");

7978
8079

const body = (await response.json()) as { data?: { audio?: string } };

8180

const hexAudio = body?.data?.audio;