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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
I
InfoQ
D
Docker
F
Fortinet All Blogs
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
月光博客
月光博客
B
Blog
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
罗磊的独立博客
博客园_首页
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
IT之家
IT之家
V
V2EX

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: move provider HTTP errors out of tts · openclaw...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -0,0 +1,152 @@

1+

export { asFiniteNumber } from "../shared/number-coercion.js";

2+

import { normalizeOptionalString as trimToUndefined } from "../shared/string-coerce.js";

3+

export { normalizeOptionalString as trimToUndefined } from "../shared/string-coerce.js";

4+5+

export function asBoolean(value: unknown): boolean | undefined {

6+

return typeof value === "boolean" ? value : undefined;

7+

}

8+9+

export function asObject(value: unknown): Record<string, unknown> | undefined {

10+

return typeof value === "object" && value !== null && !Array.isArray(value)

11+

? (value as Record<string, unknown>)

12+

: undefined;

13+

}

14+15+

export function truncateErrorDetail(detail: string, limit = 220): string {

16+

return detail.length <= limit ? detail : `${detail.slice(0, limit - 1)}…`;

17+

}

18+19+

export async function readResponseTextLimited(

20+

response: Response,

21+

limitBytes = 16 * 1024,

22+

): Promise<string> {

23+

if (limitBytes <= 0) {

24+

return "";

25+

}

26+

const reader = response.body?.getReader();

27+

if (!reader) {

28+

return "";

29+

}

30+31+

const decoder = new TextDecoder();

32+

let total = 0;

33+

let text = "";

34+

let reachedLimit = false;

35+36+

try {

37+

while (true) {

38+

const { value, done } = await reader.read();

39+

if (done) {

40+

break;

41+

}

42+

if (!value || value.byteLength === 0) {

43+

continue;

44+

}

45+

const remaining = limitBytes - total;

46+

if (remaining <= 0) {

47+

reachedLimit = true;

48+

break;

49+

}

50+

const chunk = value.byteLength > remaining ? value.subarray(0, remaining) : value;

51+

total += chunk.byteLength;

52+

text += decoder.decode(chunk, { stream: true });

53+

if (total >= limitBytes) {

54+

reachedLimit = true;

55+

break;

56+

}

57+

}

58+

text += decoder.decode();

59+

} finally {

60+

if (reachedLimit) {

61+

await reader.cancel().catch(() => {});

62+

}

63+

}

64+65+

return text;

66+

}

67+68+

export function formatProviderErrorPayload(payload: unknown): string | undefined {

69+

const root = asObject(payload);

70+

const detailObject = asObject(root?.detail);

71+

const subject = asObject(root?.error) ?? detailObject ?? root;

72+

if (!subject) {

73+

return undefined;

74+

}

75+

const message =

76+

trimToUndefined(subject.message) ??

77+

trimToUndefined(subject.detail) ??

78+

trimToUndefined(root?.message) ??

79+

trimToUndefined(root?.error) ??

80+

trimToUndefined(root?.detail);

81+

const type = trimToUndefined(subject.type);

82+

const code = trimToUndefined(subject.code) ?? trimToUndefined(subject.status);

83+

const metadata = [type ? `type=${type}` : undefined, code ? `code=${code}` : undefined]

84+

.filter((value): value is string => Boolean(value))

85+

.join(", ");

86+

if (message && metadata) {

87+

return `${truncateErrorDetail(message)} [${metadata}]`;

88+

}

89+

if (message) {

90+

return truncateErrorDetail(message);

91+

}

92+

if (metadata) {

93+

return `[${metadata}]`;

94+

}

95+

return undefined;

96+

}

97+98+

export async function extractProviderErrorDetail(response: Response): Promise<string | undefined> {

99+

const rawBody = trimToUndefined(await readResponseTextLimited(response));

100+

if (!rawBody) {

101+

return undefined;

102+

}

103+

try {

104+

return formatProviderErrorPayload(JSON.parse(rawBody)) ?? truncateErrorDetail(rawBody);

105+

} catch {

106+

return truncateErrorDetail(rawBody);

107+

}

108+

}

109+110+

export function extractProviderRequestId(response: Response): string | undefined {

111+

return (

112+

trimToUndefined(response.headers.get("x-request-id")) ??

113+

trimToUndefined(response.headers.get("request-id"))

114+

);

115+

}

116+117+

export function formatProviderHttpErrorMessage(params: {

118+

label: string;

119+

status: number;

120+

detail?: string;

121+

requestId?: string;

122+

}): string {

123+

const { label, status, detail, requestId } = params;

124+

return (

125+

`${label} (${status})` +

126+

(detail ? `: ${detail}` : "") +

127+

(requestId ? ` [request_id=${requestId}]` : "")

128+

);

129+

}

130+131+

export async function createProviderHttpError(response: Response, label: string): Promise<Error> {

132+

const detail = await extractProviderErrorDetail(response);

133+

const requestId = extractProviderRequestId(response);

134+

return new Error(

135+

formatProviderHttpErrorMessage({

136+

label,

137+

status: response.status,

138+

detail,

139+

requestId,

140+

}),

141+

);

142+

}

143+144+

export async function assertOkOrThrowProviderError(

145+

response: Response,

146+

label: string,

147+

): Promise<void> {

148+

if (response.ok) {

149+

return;

150+

}

151+

throw await createProviderHttpError(response, label);

152+

}