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

推荐订阅源

GbyAI
GbyAI
WordPress大学
WordPress大学
D
DataBreaches.Net
腾讯CDC
小众软件
小众软件
B
Blog RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Y
Y Combinator Blog
V
V2EX
I
InfoQ
D
Docker
量子位
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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(agents): repair OpenAI responses replay pairing · ope...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main

@@ -113,6 +113,16 @@ vi.mock("../plugins/provider-runtime.js", async () => {

113113

...context.messages,

114114

];

115115

}

116+

if (provider === "replay-poison") {

117+

return context.messages.filter(

118+

(message) =>

119+

message.role !== "toolResult" ||

120+

!(

121+

(message as { isError?: unknown }).isError === true &&

122+

JSON.stringify((message as { content?: unknown }).content).includes("aborted")

123+

),

124+

);

125+

}

116126

return context.messages;

117127

},

118128

),

@@ -741,6 +751,142 @@ describe("sanitizeSessionHistory", () => {

741751

expect(JSON.stringify(result)).not.toContain("missing tool result");

742752

});

743753754+

it("keeps OpenAI Responses real tool results paired when strict id sanitization rewrites aliases", async () => {

755+

const messages = castAgentMessages([

756+

makeUserMessage("generate"),

757+

makeAssistantMessage(

758+

[

759+

{

760+

type: "toolCall",

761+

id: "call_mock_image_generate_1",

762+

name: "image_generate",

763+

arguments: { prompt: "QA lighthouse" },

764+

},

765+

],

766+

{ stopReason: "toolUse" },

767+

),

768+

{

769+

role: "toolResult",

770+

call_id: "call_mock_image_generate_1",

771+

toolName: "image_generate",

772+

content: [{ type: "text", text: "Background task started for image generation." }],

773+

isError: false,

774+

},

775+

makeUserMessage("inspect the generated lighthouse attachment"),

776+

]);

777+778+

const result = await sanitizeOpenAIHistory(messages);

779+

const assistant = result[1] as Extract<AgentMessage, { role: "assistant" }>;

780+

const toolCall = extractToolCallsFromAssistant(assistant)[0];

781+

const toolResult = result[2] as Extract<AgentMessage, { role: "toolResult" }> & {

782+

call_id?: string;

783+

};

784+785+

expect(result.map((message) => message.role)).toEqual([

786+

"user",

787+

"assistant",

788+

"toolResult",

789+

"user",

790+

]);

791+

expect(toolCall?.id).toBe("callmockimagegenerate1");

792+

expect(toolResult.toolCallId).toBe(toolCall?.id);

793+

expect(toolResult.call_id).toBe(toolCall?.id);

794+

expect(toolResult.content).toEqual([

795+

{ type: "text", text: "Background task started for image generation." },

796+

]);

797+

});

798+799+

it("repairs OpenAI Responses async image replay before assistant follow-up text", async () => {

800+

const messages = castAgentMessages([

801+

makeUserMessage("Image generation check. Generate an image of a QA lighthouse."),

802+

makeAssistantMessage(

803+

[

804+

{

805+

type: "toolCall",

806+

id: "callmockimagegenerate0b27d8fa84",

807+

name: "image_generate",

808+

arguments: { prompt: "QA lighthouse" },

809+

},

810+

],

811+

{ stopReason: "toolUse" },

812+

),

813+

{

814+

role: "toolResult",

815+

toolCallId: "callmockimagegenerate0b27d8fa84",

816+

toolName: "image_generate",

817+

content: [{ type: "text", text: "Background task started for image generation." }],

818+

isError: false,

819+

},

820+

{

821+

role: "custom",

822+

content: "Image generation started; wait for completion.",

823+

},

824+

makeUserMessage("The image is ready for the original chat."),

825+

makeAssistantMessage(

826+

[

827+

{

828+

type: "toolCall",

829+

id: "callmockimagegenerate0b27d8fa842",

830+

name: "image_generate",

831+

arguments: { prompt: "QA lighthouse" },

832+

},

833+

],

834+

{ stopReason: "toolUse" },

835+

),

836+

makeAssistantMessage([{ type: "text", text: "Worked: the QA lighthouse image completed." }], {

837+

stopReason: "stop",

838+

}),

839+

]);

840+841+

const result = await sanitizeOpenAIHistory(messages);

842+843+

expect(result.map((message) => message.role)).toEqual([

844+

"user",

845+

"assistant",

846+

"toolResult",

847+

"custom",

848+

"user",

849+

"assistant",

850+

"toolResult",

851+

"assistant",

852+

]);

853+

const repairedAssistant = result[5] as Extract<AgentMessage, { role: "assistant" }>;

854+

const repairedToolCall = extractToolCallsFromAssistant(repairedAssistant)[0];

855+

expect(result[6]).toMatchObject({

856+

role: "toolResult",

857+

toolCallId: repairedToolCall?.id,

858+

toolName: "image_generate",

859+

isError: true,

860+

content: [{ type: "text", text: "aborted" }],

861+

});

862+

});

863+864+

it("repairs OpenAI Responses replay again after provider hooks mutate history", async () => {

865+

const messages = castAgentMessages([

866+

makeUserMessage("generate"),

867+

makeAssistantMessage(

868+

[{ type: "toolCall", id: "call_1", name: "image_generate", arguments: {} }],

869+

{ stopReason: "toolUse" },

870+

),

871+

makeAssistantMessage([{ type: "text", text: "done" }], { stopReason: "stop" }),

872+

]);

873+874+

const result = await sanitizeOpenAIHistory(messages, { provider: "replay-poison" });

875+876+

expect(result.map((message) => message.role)).toEqual([

877+

"user",

878+

"assistant",

879+

"toolResult",

880+

"assistant",

881+

]);

882+

expect(result[2]).toMatchObject({

883+

role: "toolResult",

884+

toolName: "image_generate",

885+

isError: true,

886+

content: [{ type: "text", text: "aborted" }],

887+

});

888+

});

889+744890

it("repairs a message-tool delivery-mirror poisoned OpenAI Responses replay", async () => {

745891

const messages: AgentMessage[] = [

746892

makeUserMessage("start"),