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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

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-chatgpt-responses): bound streaming success-bo...
wangmiao0668 · 2026-06-27 · via Recent Commits to openclaw:main

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

2525

resolveTimerTimeoutMs,

2626

clampTimerTimeoutMs,

2727

} from "@openclaw/normalization-core/number-coercion";

28+

import { createSseByteGuard } from "../../agents/streaming-byte-guard.js";

2829

import { stripSystemPromptCacheBoundary } from "../../agents/system-prompt-cache-boundary.js";

2930

import { getEnvApiKey } from "../env-api-keys.js";

3031

import { clampThinkingLevel } from "../model-utils.js";

@@ -66,6 +67,8 @@ const RETRY_AFTER_HTTP_DATE_RE =

6667

/^(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun), \d{2} (?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} \d{2}:\d{2}:\d{2} GMT|(?:Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), \d{2}-(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-\d{2} \d{2}:\d{2}:\d{2} GMT|(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun) (?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) [ \d]\d \d{2}:\d{2}:\d{2} \d{4})$/;

6768

const CODEX_TOOL_CALL_PROVIDERS = new Set(["openai", "opencode"]);

6869

const WEBSOCKET_MESSAGE_TOO_BIG_CLOSE_CODE = 1009;

70+

const OPENAI_CHATGPT_RESPONSES_ERROR_BODY_MAX_BYTES = 16 * 1024;

71+

const OPENAI_CHATGPT_RESPONSES_SUCCESS_BODY_MAX_BYTES = 16 * 1024 * 1024;

69727073

const CODEX_RESPONSE_STATUSES = new Set<CodexResponseStatus>([

7174

"completed",

@@ -339,7 +342,7 @@ export const streamOpenAICodexResponses: StreamFunction<

339342

break;

340343

}

341344342-

const errorText = await response.text();

345+

const errorText = await readChatGptResponsesErrorTextLimited(response);

343346

if (attempt < MAX_RETRIES && isRetryableError(response.status, errorText)) {

344347

let delayMs = BASE_DELAY_MS * 2 ** attempt;

345348

@@ -722,12 +725,23 @@ async function* parseSSE(response: Response): AsyncGenerator<Record<string, unkn

722725

}

723726724727

const reader = response.body.getReader();

728+

// Cap the streaming 200 success-body read at 16 MiB, mirroring the

729+

// non-streaming `readProviderJsonResponse` cap so a hostile or

730+

// malfunctioning ChatGPT Responses endpoint cannot exhaust memory by

731+

// streaming an unbounded SSE body.

732+

const guard = createSseByteGuard(reader, {

733+

maxBytes: OPENAI_CHATGPT_RESPONSES_SUCCESS_BODY_MAX_BYTES,

734+

onOverflow: ({ size, maxBytes }) =>

735+

new Error(

736+

`OpenAI ChatGPT Responses success body exceeded ${maxBytes} bytes (received ${size})`,

737+

),

738+

});

725739

const decoder = new TextDecoder();

726740

let buffer = "";

727741728742

try {

729743

while (true) {

730-

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

744+

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

731745

if (done) {

732746

break;

733747

}

@@ -760,14 +774,18 @@ async function* parseSSE(response: Response): AsyncGenerator<Record<string, unkn

760774

}

761775

} finally {

762776

try {

763-

await reader.cancel();

777+

await guard.cancel();

764778

} catch {}

765779

try {

766780

reader.releaseLock();

767781

} catch {}

768782

}

769783

}

770784785+

// Test-only re-export of the bounded SSE parser. Mirrors

786+

// `parseAnthropicSseBodyForTest` / `iterateSseMessagesForTest` patterns.

787+

export const parseSSEForTest = parseSSE;

788+771789

// ============================================================================

772790

// WebSocket Parsing

773791

// ============================================================================

@@ -1521,10 +1539,57 @@ async function processWebSocketStream(

15211539

// Error Handling

15221540

// ============================================================================

152315411542+

async function readChatGptResponsesErrorTextLimited(response: Response): Promise<string> {

1543+

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

1544+

if (!reader) {

1545+

return "";

1546+

}

1547+1548+

const decoder = new TextDecoder();

1549+

let total = 0;

1550+

let text = "";

1551+

let reachedLimit = false;

1552+1553+

try {

1554+

while (true) {

1555+

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

1556+

if (done) {

1557+

break;

1558+

}

1559+

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

1560+

continue;

1561+

}

1562+

const remaining = OPENAI_CHATGPT_RESPONSES_ERROR_BODY_MAX_BYTES - total;

1563+

if (remaining <= 0) {

1564+

reachedLimit = true;

1565+

break;

1566+

}

1567+

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

1568+

total += chunk.byteLength;

1569+

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

1570+

if (total >= OPENAI_CHATGPT_RESPONSES_ERROR_BODY_MAX_BYTES) {

1571+

reachedLimit = true;

1572+

break;

1573+

}

1574+

}

1575+

text += decoder.decode();

1576+

} finally {

1577+

if (reachedLimit) {

1578+

// This provider module is browser-safe, so keep error-body capping on Web APIs.

1579+

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

1580+

}

1581+

try {

1582+

reader.releaseLock();

1583+

} catch {}

1584+

}

1585+1586+

return text;

1587+

}

1588+15241589

async function parseErrorResponse(

15251590

response: Response,

15261591

): Promise<{ message: string; friendlyMessage?: string }> {

1527-

const raw = await response.text();

1592+

const raw = await readChatGptResponsesErrorTextLimited(response);

15281593

let message = raw || response.statusText || "Request failed";

15291594

let friendlyMessage: string | undefined;

15301595