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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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(agents): yield during model stream bursts · openclaw/...
steipete · 2026-05-16 · via Recent Commits to openclaw:main

@@ -73,6 +73,8 @@ const DEFAULT_AZURE_OPENAI_API_VERSION = "preview";

7373

const OPENAI_CODEX_RESPONSES_EMPTY_INPUT_TEXT = " ";

7474

const GEMINI_THOUGHT_SIGNATURE_VALIDATOR_SKIP = "skip_thought_signature_validator";

7575

const AZURE_RESPONSES_FIRST_EVENT_TIMEOUT_MS = 30_000;

76+

const MODEL_STREAM_COOPERATIVE_YIELD_INTERVAL_MS = 12;

77+

const MODEL_STREAM_COOPERATIVE_YIELD_MAX_EVENTS = 64;

7678

const log = createSubsystemLogger("openai-transport");

77797880

type ReplayableResponseOutputMessage = Omit<ResponseOutputMessage, "id"> & { id?: string };

@@ -92,6 +94,42 @@ type BaseStreamOptions = {

9294

responseFormat?: Record<string, unknown>;

9395

};

949697+

type ModelStreamCooperativeScheduler = {

98+

afterEvent: () => Promise<void>;

99+

};

100+101+

function throwIfModelStreamAborted(signal?: AbortSignal): void {

102+

if (signal?.aborted) {

103+

throw new Error("Request was aborted");

104+

}

105+

}

106+107+

function createModelStreamCooperativeScheduler(

108+

signal?: AbortSignal,

109+

): ModelStreamCooperativeScheduler {

110+

let lastYieldedAt = Date.now();

111+

let eventsSinceYield = 0;

112+

return {

113+

async afterEvent() {

114+

throwIfModelStreamAborted(signal);

115+

eventsSinceYield += 1;

116+

const now = Date.now();

117+

if (

118+

eventsSinceYield < MODEL_STREAM_COOPERATIVE_YIELD_MAX_EVENTS &&

119+

now - lastYieldedAt < MODEL_STREAM_COOPERATIVE_YIELD_INTERVAL_MS

120+

) {

121+

return;

122+

}

123+

eventsSinceYield = 0;

124+

lastYieldedAt = now;

125+

await new Promise<void>((resolve) => {

126+

setImmediate(resolve);

127+

});

128+

throwIfModelStreamAborted(signal);

129+

},

130+

};

131+

}

132+95133

type OpenAIResponsesOptions = BaseStreamOptions & {

96134

reasoning?: OpenAIReasoningEffort;

97135

reasoningEffort?: OpenAIReasoningEffort;

@@ -722,6 +760,7 @@ async function processResponsesStream(

722760

serviceTier?: ResponseCreateParamsStreaming["service_tier"],

723761

) => void;

724762

firstEventTimeoutMs?: number;

763+

signal?: AbortSignal;

725764

},

726765

) {

727766

let currentItem: Record<string, unknown> | null = null;

@@ -736,7 +775,9 @@ async function processResponsesStream(

736775

model,

737776

options?.firstEventTimeoutMs,

738777

);

778+

const cooperativeScheduler = createModelStreamCooperativeScheduler(options?.signal);

739779

for await (const rawEvent of guardedStream) {

780+

throwIfModelStreamAborted(options?.signal);

740781

const event = rawEvent as Record<string, unknown>;

741782

const type = stringifyUnknown(event.type);

742783

eventCount += 1;

@@ -933,6 +974,7 @@ async function processResponsesStream(

933974

: "Unknown error (no error details in response)";

934975

throw new Error(msg);

935976

}

977+

await cooperativeScheduler.afterEvent();

936978

}

937979

const eventTypeSummary = [...eventTypes.entries()]

938980

.slice(0, 12)

@@ -1141,6 +1183,7 @@ export function createOpenAIResponsesTransportStreamFn(): StreamFn {

11411183

await processResponsesStream(responseStream, output, stream, model, {

11421184

serviceTier: (options as OpenAIResponsesOptions | undefined)?.serviceTier,

11431185

applyServiceTierPricing,

1186+

signal: options?.signal,

11441187

});

11451188

if (options?.signal?.aborted) {

11461189

throw new Error("Request was aborted");

@@ -1538,6 +1581,7 @@ export function createAzureOpenAIResponsesTransportStreamFn(): StreamFn {

15381581

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

15391582

await processResponsesStream(responseStream, output, stream, model, {

15401583

firstEventTimeoutMs: AZURE_RESPONSES_FIRST_EVENT_TIMEOUT_MS,

1584+

signal: options?.signal,

15411585

});

15421586

if (options?.signal?.aborted) {

15431587

throw new Error("Request was aborted");

@@ -1738,7 +1782,9 @@ export function createOpenAICompletionsTransportStreamFn(): StreamFn {

17381782

buildOpenAISdkRequestOptions(model, options?.signal),

17391783

)) as unknown as AsyncIterable<ChatCompletionChunk>;

17401784

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

1741-

await processOpenAICompletionsStream(responseStream, output, model, stream);

1785+

await processOpenAICompletionsStream(responseStream, output, model, stream, {

1786+

signal: options?.signal,

1787+

});

17421788

if (options?.signal?.aborted) {

17431789

throw new Error("Request was aborted");

17441790

}

@@ -1760,6 +1806,7 @@ async function processOpenAICompletionsStream(

17601806

output: MutableAssistantOutput,

17611807

model: Model<Api>,

17621808

stream: { push(event: unknown): void },

1809+

options?: { signal?: AbortSignal },

17631810

) {

17641811

const MAX_POST_TOOL_CALL_BUFFER_BYTES = 256_000;

17651812

const MAX_TOOL_CALL_ARGUMENT_BUFFER_BYTES = 256_000;

@@ -1907,8 +1954,11 @@ async function processOpenAICompletionsStream(

19071954

appendVisibleTextDelta(part);

19081955

}

19091956

};

1957+

const cooperativeScheduler = createModelStreamCooperativeScheduler(options?.signal);

19101958

for await (const rawChunk of responseStream as AsyncIterable<unknown>) {

1959+

throwIfModelStreamAborted(options?.signal);

19111960

if (!rawChunk || typeof rawChunk !== "object") {

1961+

await cooperativeScheduler.afterEvent();

19121962

continue;

19131963

}

19141964

const chunk = rawChunk as ChatCompletionChunk;

@@ -1918,6 +1968,7 @@ async function processOpenAICompletionsStream(

19181968

}

19191969

const choice = Array.isArray(chunk.choices) ? chunk.choices[0] : undefined;

19201970

if (!choice) {

1971+

await cooperativeScheduler.afterEvent();

19211972

continue;

19221973

}

19231974

const choiceUsage = (choice as unknown as { usage?: ChatCompletionChunk["usage"] }).usage;

@@ -1935,6 +1986,7 @@ async function processOpenAICompletionsStream(

19351986

choice.delta ??

19361987

(choice as unknown as { message?: ChatCompletionChunk["choices"][number]["delta"] }).message;

19371988

if (!choiceDelta) {

1989+

await cooperativeScheduler.afterEvent();

19381990

continue;

19391991

}

19401992

if (choiceDelta.content) {

@@ -2026,6 +2078,7 @@ async function processOpenAICompletionsStream(

20262078

}

20272079

}

20282080

flushPendingPostToolCallDeltas();

2081+

await cooperativeScheduler.afterEvent();

20292082

}

20302083

flushDeepSeekTextFilterAtEnd();

20312084

finishCurrentBlock();