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

推荐订阅源

P
Proofpoint News Feed
博客园_首页
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
Last Week in AI
Last Week in AI

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(codex): stream non-final-answer assistant deltas as p...
agonza1 · 2026-06-22 · via Recent Commits to openclaw:main

@@ -278,6 +278,11 @@ describe("CodexAppServerEventProjector", () => {

278278

const { onAssistantMessageStart, onPartialReply, projector } =

279279

await createProjectorWithAssistantHooks();

280280281+

await projector.handleNotification(

282+

forCurrentTurn("item/started", {

283+

item: { type: "agentMessage", id: "msg-1", phase: "final_answer", text: "" },

284+

}),

285+

);

281286

await projector.handleNotification(agentMessageDelta("hel"));

282287

await projector.handleNotification(agentMessageDelta("lo"));

283288

await projector.handleNotification(

@@ -305,7 +310,10 @@ describe("CodexAppServerEventProjector", () => {

305310

const result = projector.buildResult(buildEmptyToolTelemetry());

306311307312

expect(onAssistantMessageStart).toHaveBeenCalledTimes(1);

308-

expect(onPartialReply).not.toHaveBeenCalled();

313+

expect(onPartialReply.mock.calls.map((call) => call[0])).toEqual([

314+

{ text: "hel", delta: "hel" },

315+

{ text: "hello", delta: "lo" },

316+

]);

309317

expect(result.assistantTexts).toEqual(["hello"]);

310318

expect(result.messagesSnapshot.map((message) => message.role)).toEqual(["user", "assistant"]);

311319

expect(result.lastAssistant?.content).toEqual([{ type: "text", text: "hello" }]);

@@ -321,7 +329,13 @@ describe("CodexAppServerEventProjector", () => {

321329

});

322330323331

it("streams final-answer assistant deltas into partial replies", async () => {

324-

const { onPartialReply, projector } = await createProjectorWithAssistantHooks();

332+

const onAgentEvent = vi.fn();

333+

const onPartialReply = vi.fn();

334+

const projector = await createProjector({

335+

...(await createParams()),

336+

onAgentEvent,

337+

onPartialReply,

338+

});

325339326340

await projector.handleNotification(

327341

forCurrentTurn("item/started", {

@@ -341,6 +355,79 @@ describe("CodexAppServerEventProjector", () => {

341355

{ text: "hel", delta: "hel" },

342356

{ text: "hello", delta: "lo" },

343357

]);

358+

expect(

359+

onAgentEvent.mock.calls

360+

.map((call) => call[0])

361+

.filter((event) => event.stream === "assistant"),

362+

).toEqual([

363+

{ stream: "assistant", data: { text: "hel", delta: "hel" } },

364+

{ stream: "assistant", data: { text: "hello", delta: "lo" } },

365+

]);

366+

});

367+368+

it("streams assistant deltas when the app-server omits the item phase", async () => {

369+

// Newer Codex app-servers (>= 0.139) stream agentMessage deltas without a

370+

// "final_answer" phase. These surface on the replaceable agent-event path;

371+

// legacy append-oriented partial callbacks stay quiet.

372+

const onAgentEvent = vi.fn();

373+

const onPartialReply = vi.fn();

374+

const params = await createParams();

375+

const projector = await createProjector({

376+

...params,

377+

onAgentEvent,

378+

onPartialReply,

379+

});

380+381+

await projector.handleNotification(agentMessageDelta("hel", "msg-final"));

382+

await projector.handleNotification(agentMessageDelta("lo", "msg-final"));

383+384+

expect(onPartialReply).not.toHaveBeenCalled();

385+

expect(onAgentEvent.mock.calls.map((call) => call[0])).toEqual([

386+

{ stream: "assistant", data: { text: "hel", delta: "hel", replaceable: true } },

387+

{ stream: "assistant", data: { text: "hello", delta: "lo", replaceable: true } },

388+

]);

389+

});

390+391+

it("marks partial replacement when an unphased intermediate item is superseded by a final item", async () => {

392+

const onAgentEvent = vi.fn();

393+

const onPartialReply = vi.fn();

394+

const params = await createParams();

395+

const projector = await createProjector({

396+

...params,

397+

onAgentEvent,

398+

onPartialReply,

399+

});

400+401+

await projector.handleNotification(agentMessageDelta("coordination ", "msg-intermediate"));

402+

await projector.handleNotification(agentMessageDelta("draft", "msg-intermediate"));

403+

await projector.handleNotification(

404+

forCurrentTurn("item/started", {

405+

item: { type: "agentMessage", id: "msg-final", phase: "final_answer", text: "" },

406+

}),

407+

);

408+

await projector.handleNotification(agentMessageDelta("final ", "msg-final"));

409+

await projector.handleNotification(agentMessageDelta("answer", "msg-final"));

410+411+

expect(onPartialReply).not.toHaveBeenCalled();

412+

expect(

413+

onAgentEvent.mock.calls

414+

.map((call) => call[0])

415+

.filter((event) => event.stream === "assistant"),

416+

).toEqual([

417+

{

418+

stream: "assistant",

419+

data: { text: "coordination ", delta: "coordination ", replaceable: true },

420+

},

421+

{

422+

stream: "assistant",

423+

data: { text: "coordination draft", delta: "draft", replaceable: true },

424+

},

425+

{

426+

stream: "assistant",

427+

data: { text: "final ", delta: "", replace: true, replaceable: true },

428+

},

429+

{ stream: "assistant", data: { text: "final answer", delta: "answer", replaceable: true } },

430+

]);

344431

});

345432346433

it("suppresses mirrored user prompt when the inbound message was already persisted", async () => {

@@ -1041,6 +1128,8 @@ describe("CodexAppServerEventProjector", () => {

10411128

const result = projector.buildResult(buildEmptyToolTelemetry());

1042112910431130

expect(onAssistantMessageStart).toHaveBeenCalledTimes(1);

1131+

// Phase-less snapshots stay on the replaceable agent-event path so legacy

1132+

// append-only channel previews do not render superseded coordination text.

10441133

expect(onPartialReply).not.toHaveBeenCalled();

10451134

expect(result.assistantTexts).toEqual([

10461135

"release fixes first. please drop affected PRs, failing checks, and blockers here.",