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

推荐订阅源

量子位
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
H
Help Net Security
雷峰网
雷峰网
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
GbyAI
GbyAI
博客园_首页
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
I
InfoQ
小众软件
小众软件
Google DeepMind News
Google DeepMind News
D
Docker
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - Franky
Hugging Face - Blog
Hugging Face - 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-completions): seal native reasoning before the...
ZengWen-DT · 2026-06-22 · via Recent Commits to openclaw:main

@@ -799,6 +799,123 @@ describe("openai-completions stop-reason tool-call guard", () => {

799799

expect(result.content.some((block) => block.type === "thinking")).toBe(false);

800800

});

801801802+

it("seals the native reasoning block before the answer text begins", async () => {

803+

// deepseek streams reasoning_content, then switches to content with no

804+

// boundary event; thinking_end must precede the answer so channels do not

805+

// merge the answer into the reasoning block.

806+

mockChunksRef.chunks = [

807+

{

808+

id: "chatcmpl-test",

809+

choices: [{ index: 0, delta: { reasoning_content: "Let me think." } }],

810+

},

811+

{

812+

id: "chatcmpl-test",

813+

choices: [{ index: 0, delta: { reasoning_content: " Still thinking." } }],

814+

},

815+

makeTextChunk("The answer"),

816+

makeTextChunk(" is 42."),

817+

makeFinishChunk("stop"),

818+

];

819+820+

const stream = streamOpenAICompletions(reasoningModel, context, {

821+

apiKey: "sk-test",

822+

reasoningEffort: "medium",

823+

});

824+

const eventTypes: string[] = [];

825+

for await (const event of stream as AsyncIterable<{ type: string }>) {

826+

eventTypes.push(event.type);

827+

}

828+

const result = await stream.result();

829+830+

const thinkingEndIndex = eventTypes.indexOf("thinking_end");

831+

const textStartIndex = eventTypes.indexOf("text_start");

832+

const firstTextDeltaIndex = eventTypes.indexOf("text_delta");

833+

expect(thinkingEndIndex).toBeGreaterThanOrEqual(0);

834+

expect(textStartIndex).toBeGreaterThanOrEqual(0);

835+

expect(thinkingEndIndex).toBeLessThan(textStartIndex);

836+

expect(thinkingEndIndex).toBeLessThan(firstTextDeltaIndex);

837+

// thinking_end is emitted exactly once even though the block is also

838+

// visited by the end-of-stream finish loop.

839+

expect(eventTypes.filter((type) => type === "thinking_end")).toHaveLength(1);

840+841+

expect(result.content).toContainEqual({

842+

type: "thinking",

843+

thinking: "Let me think. Still thinking.",

844+

thinkingSignature: "reasoning_content",

845+

});

846+

expect(result.content).toContainEqual({ type: "text", text: "The answer is 42." });

847+

});

848+849+

it("seals the native reasoning block before a following tool call", async () => {

850+

mockChunksRef.chunks = [

851+

{

852+

id: "chatcmpl-test",

853+

choices: [{ index: 0, delta: { reasoning_content: "I should call a tool." } }],

854+

},

855+

makeToolCallChunk("call_1", "bash", '{"cmd":"ls"}'),

856+

makeFinishChunk("tool_calls"),

857+

];

858+859+

const stream = streamOpenAICompletions(reasoningModel, context, {

860+

apiKey: "sk-test",

861+

reasoningEffort: "medium",

862+

});

863+

const eventTypes: string[] = [];

864+

for await (const event of stream as AsyncIterable<{ type: string }>) {

865+

eventTypes.push(event.type);

866+

}

867+

await stream.result();

868+869+

const thinkingEndIndex = eventTypes.indexOf("thinking_end");

870+

const toolCallStartIndex = eventTypes.indexOf("toolcall_start");

871+

expect(thinkingEndIndex).toBeGreaterThanOrEqual(0);

872+

expect(toolCallStartIndex).toBeGreaterThanOrEqual(0);

873+

expect(thinkingEndIndex).toBeLessThan(toolCallStartIndex);

874+

expect(eventTypes.filter((type) => type === "thinking_end")).toHaveLength(1);

875+

});

876+877+

it("keeps one native reasoning block when content and reasoning co-occur", async () => {

878+

mockChunksRef.chunks = [

879+

{

880+

id: "chatcmpl-test",

881+

choices: [{ index: 0, delta: { reasoning_content: "First thought." } }],

882+

},

883+

{

884+

id: "chatcmpl-test",

885+

choices: [

886+

{

887+

index: 0,

888+

delta: {

889+

content: "Visible text that shares the reasoning chunk.",

890+

reasoning_content: " Second thought.",

891+

},

892+

},

893+

],

894+

},

895+

makeTextChunk(" Final answer."),

896+

makeFinishChunk("stop"),

897+

];

898+899+

const stream = streamOpenAICompletions(reasoningModel, context, {

900+

apiKey: "sk-test",

901+

reasoningEffort: "medium",

902+

});

903+

const eventTypes: string[] = [];

904+

for await (const event of stream as AsyncIterable<{ type: string }>) {

905+

eventTypes.push(event.type);

906+

}

907+

const result = await stream.result();

908+909+

expect(eventTypes.filter((type) => type === "thinking_start")).toHaveLength(1);

910+

expect(eventTypes.filter((type) => type === "thinking_end")).toHaveLength(1);

911+

expect(eventTypes.indexOf("thinking_end")).toBeLessThan(eventTypes.indexOf("text_start"));

912+

expect(result.content).toContainEqual({

913+

type: "thinking",

914+

thinking: "First thought. Second thought.",

915+

thinkingSignature: "reasoning_content",

916+

});

917+

});

918+802919

it("promotes silent tool_calls with finish_reason stop to toolUse", async () => {

803920

mockChunksRef.chunks = [

804921

makeToolCallChunk("call_1", "bash", '{"cmd":"ls"}'),