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

推荐订阅源

罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
爱范儿
爱范儿
小众软件
小众软件
MyScale Blog
MyScale Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
C
Check Point 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(openai): bound batch error bodies · openclaw/openclaw...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -15,6 +15,28 @@ function jsonlBytes(value: string): number {

1515

return jsonlEncoder.encode(value).byteLength;

1616

}

1717
18+

function cancelTrackedResponse(

19+

text: string,

20+

init: ResponseInit,

21+

): {

22+

response: Response;

23+

wasCanceled: () => boolean;

24+

} {

25+

let canceled = false;

26+

const stream = new ReadableStream<Uint8Array>({

27+

start(controller) {

28+

controller.enqueue(new TextEncoder().encode(text));

29+

},

30+

cancel() {

31+

canceled = true;

32+

},

33+

});

34+

return {

35+

response: new Response(stream, init),

36+

wasCanceled: () => canceled,

37+

};

38+

}

39+
1840

function fetchInputUrl(input: RequestInfo | URL): string {

1941

if (typeof input === "string") {

2042

return input;

@@ -243,4 +265,56 @@ describe("OpenAI embedding batch output", () => {

243265

["3", [4]],

244266

]);

245267

});

268+
269+

it("bounds batch resource error bodies without using response.text()", async () => {

270+

const tracked = cancelTrackedResponse(`${"batch status unavailable ".repeat(1024)}tail`, {

271+

status: 400,

272+

headers: { "Content-Type": "text/plain" },

273+

});

274+

const textSpy = vi.spyOn(tracked.response, "text").mockRejectedValue(new Error("unbounded"));

275+

let batchStatusReturned = false;

276+

const fetchImpl = vi.fn(async (input: RequestInfo | URL, init?: RequestInit) => {

277+

const url = fetchInputUrl(input);

278+

if (url.endsWith("/files") && init?.method === "POST") {

279+

return jsonResponse({ id: "file-0" });

280+

}

281+

if (url.endsWith("/batches") && init?.method === "POST") {

282+

return jsonResponse({ id: "batch-0", status: "in_progress" });

283+

}

284+

if (url.endsWith("/batches/batch-0") && !batchStatusReturned) {

285+

batchStatusReturned = true;

286+

return tracked.response;

287+

}

288+

return new Response("unexpected request", { status: 500 });

289+

});

290+
291+

await expect(

292+

runOpenAiEmbeddingBatches({

293+

openAi: {

294+

baseUrl: "https://openai-compatible.example/v1",

295+

headers: { Authorization: "Bearer test" },

296+

model: "text-embedding-3-small",

297+

fetchImpl,

298+

},

299+

agentId: "main",

300+

requests: [

301+

{

302+

custom_id: "0",

303+

method: "POST",

304+

url: "/v1/embeddings",

305+

body: {

306+

model: "text-embedding-3-small",

307+

input: "payload",

308+

},

309+

},

310+

],

311+

wait: true,

312+

concurrency: 1,

313+

pollIntervalMs: 1000,

314+

timeoutMs: 60_000,

315+

}),

316+

).rejects.toThrow(/openai batch status failed: 400 batch status unavailable/);

317+

expect(tracked.wasCanceled()).toBe(true);

318+

expect(textSpy).not.toHaveBeenCalled();

319+

});

246320

});