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

推荐订阅源

V
Visual Studio Blog
I
InfoQ
H
Help Net Security
GbyAI
GbyAI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
Y
Y Combinator Blog
L
LangChain Blog
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
博客园 - Franky
D
Docker
Jina AI
Jina 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(ui): stabilize WebChat final reload reconciliation (#...
vincentkoc · 2026-04-28 · via Recent Commits to openclaw:main

@@ -47,18 +47,22 @@ function createActiveStreamingState() {

4747

});

4848

}

494950-

function createOtherRunNoReplyFinalPayload(): ChatEventPayload {

50+

function createOtherRunSilentFinalPayload(text: string): ChatEventPayload {

5151

return {

5252

runId: "run-announce",

5353

sessionKey: "main",

5454

state: "final",

5555

message: {

5656

role: "assistant",

57-

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

57+

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

5858

},

5959

};

6060

}

616162+

function createOtherRunNoReplyFinalPayload(): ChatEventPayload {

63+

return createOtherRunSilentFinalPayload("NO_REPLY");

64+

}

65+6266

describe("handleChatEvent", () => {

6367

it("returns null when payload is missing", () => {

6468

const state = createState();

@@ -144,6 +148,20 @@ describe("handleChatEvent", () => {

144148

expect(state.chatMessages).toEqual([]);

145149

});

146150151+

it.each(["no_reply", "ANNOUNCE_SKIP", "REPLY_SKIP"])(

152+

"keeps plain-text %s final payload from another run without clearing active stream",

153+

(text) => {

154+

const state = createActiveStreamingState();

155+

const payload = createOtherRunSilentFinalPayload(text);

156+157+

expect(handleChatEvent(state, payload)).toBe(null);

158+

expect(state.chatRunId).toBe("run-user");

159+

expect(state.chatStream).toBe("Working...");

160+

expect(state.chatStreamStartedAt).toBe(123);

161+

expect(state.chatMessages).toEqual([payload.message]);

162+

},

163+

);

164+147165

it("replaces the stream when a delta snapshot gets shorter", () => {

148166

const state = createState({

149167

sessionKey: "main",

@@ -440,6 +458,32 @@ describe("handleChatEvent", () => {

440458

expect(state.chatStream).toBe(null);

441459

});

442460461+

it.each(["no_reply", "ANNOUNCE_SKIP", "REPLY_SKIP"])(

462+

"keeps plain-text %s final payload from own run",

463+

(text) => {

464+

const state = createState({

465+

sessionKey: "main",

466+

chatRunId: "run-1",

467+

chatStream: text,

468+

chatStreamStartedAt: 100,

469+

});

470+

const payload: ChatEventPayload = {

471+

runId: "run-1",

472+

sessionKey: "main",

473+

state: "final",

474+

message: {

475+

role: "assistant",

476+

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

477+

},

478+

};

479+480+

expect(handleChatEvent(state, payload)).toBe("final");

481+

expect(state.chatMessages).toEqual([payload.message]);

482+

expect(state.chatRunId).toBe(null);

483+

expect(state.chatStream).toBe(null);

484+

},

485+

);

486+443487

it("does not persist NO_REPLY stream text on final without message", () => {

444488

const state = createState({

445489

sessionKey: "main",

@@ -522,10 +566,13 @@ describe("handleChatEvent", () => {

522566

});

523567524568

describe("loadChatHistory", () => {

525-

it("filters NO_REPLY assistant messages from history", async () => {

569+

it("filters legacy silent assistant messages from history", async () => {

526570

const messages = [

527571

{ role: "user", content: [{ type: "text", text: "Hello" }] },

528572

{ role: "assistant", content: [{ type: "text", text: "NO_REPLY" }] },

573+

{ role: "assistant", content: [{ type: "text", text: "no_reply" }] },

574+

{ role: "assistant", content: [{ type: "text", text: "ANNOUNCE_SKIP" }] },

575+

{ role: "assistant", content: [{ type: "text", text: "REPLY_SKIP" }] },

529576

{ role: "assistant", content: [{ type: "text", text: "Real answer" }] },

530577

{ role: "assistant", text: " NO_REPLY " },

531578

];

@@ -539,9 +586,12 @@ describe("loadChatHistory", () => {

539586540587

await loadChatHistory(state);

541588542-

expect(state.chatMessages).toHaveLength(2);

589+

expect(state.chatMessages).toHaveLength(5);

543590

expect(state.chatMessages[0]).toEqual(messages[0]);

544591

expect(state.chatMessages[1]).toEqual(messages[2]);

592+

expect(state.chatMessages[2]).toEqual(messages[3]);

593+

expect(state.chatMessages[3]).toEqual(messages[4]);

594+

expect(state.chatMessages[4]).toEqual(messages[5]);

545595

expect(state.chatThinkingLevel).toBe("low");

546596

expect(state.chatLoading).toBe(false);

547597

});