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

推荐订阅源

Jina AI
Jina AI
S
SegmentFault 最新的问题
D
DataBreaches.Net
H
Help Net Security
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
罗磊的独立博客
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Vercel News
Vercel News
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)

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): handle parallel tool call deltas in openai-c...
luna-system · 2026-05-23 · via Recent Commits to openclaw:main

@@ -2440,22 +2440,25 @@ async function processOpenAICompletionsStream(

24402440

const deepSeekTextFilter = shouldFilterDeepSeekDsmlText(compat)

24412441

? createDeepSeekTextFilter()

24422442

: null;

2443+

type ToolCallBlock = {

2444+

type: "toolCall";

2445+

id: string;

2446+

name: string;

2447+

arguments: Record<string, unknown>;

2448+

partialArgs: string;

2449+

thoughtSignature?: string;

2450+

};

24432451

let currentBlock:

24442452

| { type: "text"; text: string }

24452453

| { type: "thinking"; thinking: string; thinkingSignature?: string }

2446-

| {

2447-

type: "toolCall";

2448-

id: string;

2449-

name: string;

2450-

arguments: Record<string, unknown>;

2451-

partialArgs: string;

2452-

thoughtSignature?: string;

2453-

}

2454+

| ToolCallBlock

24542455

| null = null;

24552456

let pendingPostToolCallDeltas: CompletionsReasoningDelta[] = [];

24562457

let pendingPostToolCallBytes = 0;

2457-

let currentToolCallArgumentBytes = 0;

24582458

let isFlushingPendingPostToolCallDeltas = false;

2459+

const toolCallBlocksByIndex = new Map<number, ToolCallBlock>();

2460+

const toolCallBlocksById = new Map<string, ToolCallBlock>();

2461+

const toolCallBlockBytes = new WeakMap<ToolCallBlock, number>();

24592462

const blockIndex = () => output.content.length - 1;

24602463

const measureUtf8Bytes = (text: string) => Buffer.byteLength(text, "utf8");

24612464

const finishCurrentBlock = () => {

@@ -2464,11 +2467,11 @@ async function processOpenAICompletionsStream(

24642467

}

24652468

if (currentBlock.type === "toolCall") {

24662469

currentBlock.arguments = parseStreamingJson(currentBlock.partialArgs);

2467-

const completed = {

2468-

...currentBlock,

2469-

arguments: parseStreamingJson(currentBlock.partialArgs),

2470-

};

2471-

output.content[blockIndex()] = completed;

2470+

}

2471+

};

2472+

const finishAllToolCallBlocks = () => {

2473+

for (const block of toolCallBlocksByIndex.values()) {

2474+

block.arguments = parseStreamingJson(block.partialArgs);

24722475

}

24732476

};

24742477

const queuePostToolCallDelta = (next: CompletionsReasoningDelta) => {

@@ -2646,57 +2649,61 @@ async function processOpenAICompletionsStream(

26462649

}

26472650

if (choiceDelta.tool_calls && choiceDelta.tool_calls.length > 0) {

26482651

for (const toolCall of choiceDelta.tool_calls) {

2649-

if (

2650-

!currentBlock ||

2651-

currentBlock.type !== "toolCall" ||

2652-

(toolCall.id && currentBlock.id !== toolCall.id)

2653-

) {

2652+

const streamIndex = typeof toolCall.index === "number" ? toolCall.index : undefined;

2653+

let block = streamIndex !== undefined ? toolCallBlocksByIndex.get(streamIndex) : undefined;

2654+

if (!block && toolCall.id) {

2655+

block = toolCallBlocksById.get(toolCall.id);

2656+

}

2657+

if (!block) {

26542658

const switchingToolCall = currentBlock?.type === "toolCall";

26552659

finishCurrentBlock();

26562660

if (switchingToolCall) {

26572661

currentBlock = null;

26582662

flushPendingPostToolCallDeltas();

26592663

}

26602664

const initialSig = extractGoogleThoughtSignature(toolCall);

2661-

currentBlock = {

2665+

block = {

26622666

type: "toolCall",

26632667

id: toolCall.id || "",

26642668

name: toolCall.function?.name || "",

26652669

arguments: {},

26662670

partialArgs: "",

26672671

...(initialSig ? { thoughtSignature: initialSig } : {}),

26682672

};

2669-

currentToolCallArgumentBytes = 0;

2670-

output.content.push(currentBlock);

2671-

stream.push({ type: "toolcall_start", contentIndex: blockIndex(), partial: output });

2673+

output.content.push(block);

2674+

stream.push({

2675+

type: "toolcall_start",

2676+

contentIndex: output.content.indexOf(block),

2677+

partial: output,

2678+

});

26722679

}

2673-

if (currentBlock.type !== "toolCall") {

2674-

continue;

2680+

if (streamIndex !== undefined && !toolCallBlocksByIndex.has(streamIndex)) {

2681+

toolCallBlocksByIndex.set(streamIndex, block);

26752682

}

26762683

if (toolCall.id) {

2677-

currentBlock.id = toolCall.id;

2684+

block.id = toolCall.id;

2685+

toolCallBlocksById.set(toolCall.id, block);

26782686

}

2687+

currentBlock = block;

26792688

if (toolCall.function?.name) {

2680-

currentBlock.name = toolCall.function.name;

2689+

block.name = toolCall.function.name;

26812690

}

26822691

const deltaSig = extractGoogleThoughtSignature(toolCall);

26832692

if (deltaSig) {

2684-

currentBlock.thoughtSignature = deltaSig;

2693+

block.thoughtSignature = deltaSig;

26852694

}

26862695

if (toolCall.function?.arguments) {

26872696

const nextArgumentBytes = measureUtf8Bytes(toolCall.function.arguments);

2688-

if (

2689-

currentToolCallArgumentBytes + nextArgumentBytes >

2690-

MAX_TOOL_CALL_ARGUMENT_BUFFER_BYTES

2691-

) {

2697+

const currentBlockArgBytes = toolCallBlockBytes.get(block) ?? 0;

2698+

if (currentBlockArgBytes + nextArgumentBytes > MAX_TOOL_CALL_ARGUMENT_BUFFER_BYTES) {

26922699

throw new Error("Exceeded tool-call argument buffer limit");

26932700

}

2694-

currentToolCallArgumentBytes += nextArgumentBytes;

2695-

currentBlock.partialArgs += toolCall.function.arguments;

2696-

currentBlock.arguments = parseStreamingJson(currentBlock.partialArgs);

2701+

toolCallBlockBytes.set(block, currentBlockArgBytes + nextArgumentBytes);

2702+

block.partialArgs += toolCall.function.arguments;

2703+

block.arguments = parseStreamingJson(block.partialArgs);

26972704

stream.push({

26982705

type: "toolcall_delta",

2699-

contentIndex: blockIndex(),

2706+

contentIndex: output.content.indexOf(block),

27002707

delta: toolCall.function.arguments,

27012708

partial: output,

27022709

});

@@ -2707,10 +2714,8 @@ async function processOpenAICompletionsStream(

27072714

await cooperativeScheduler.afterEvent();

27082715

}

27092716

flushDeepSeekTextFilterAtEnd();

2710-

finishCurrentBlock();

2711-

if (currentBlock?.type === "toolCall") {

2712-

currentBlock = null;

2713-

}

2717+

finishAllToolCallBlocks();

2718+

currentBlock = null;

27142719

flushPendingPostToolCallDeltas();

27152720

const hasToolCalls = output.content.some((block) => block.type === "toolCall");

27162721

if (output.stopReason === "toolUse" && !hasToolCalls) {