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

推荐订阅源

Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler
I
InfoQ
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
The Cloudflare 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(ui): wait for pending model switches before send · op...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -6,6 +6,7 @@ import {

66

getChatAttachmentDataUrl,

77

getChatAttachmentPreviewUrl,

88

registerChatAttachmentPayload,

9+

releaseChatAttachmentPayloads,

910

resetChatAttachmentPayloadStoreForTest,

1011

} from "./chat/attachment-payload-store.ts";

1112

import type { executeSlashCommand } from "./chat/slash-command-executor.ts";

@@ -99,6 +100,7 @@ function makeHost(overrides?: Partial<ChatHost>): ChatHost {

99100

chatSideResult: null,

100101

chatSideResultTerminalRuns: new Set<string>(),

101102

chatModelOverrides: {},

103+

chatModelSwitchPromises: {},

102104

chatModelsLoading: false,

103105

chatModelCatalog: [],

104106

refreshSessionsAfterChat: new Set<string>(),

@@ -631,6 +633,286 @@ describe("handleSendChat", () => {

631633

expect(host.chatMessage).toBe("");

632634

});

633635636+

it("waits for an in-flight model picker update before sending chat", async () => {

637+

const switchUpdate = createDeferred<boolean>();

638+

const request = vi.fn(async (method: string) => {

639+

if (method === "chat.send") {

640+

return { status: "started" };

641+

}

642+

throw new Error(`Unexpected request: ${method}`);

643+

});

644+

const host = makeHost({

645+

client: { request } as unknown as ChatHost["client"],

646+

chatMessage: "use the newly selected model",

647+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

648+

});

649+650+

const send = handleSendChat(host);

651+

await Promise.resolve();

652+653+

expect(request).not.toHaveBeenCalled();

654+

expect(host.chatMessage).toBe("use the newly selected model");

655+656+

switchUpdate.resolve(true);

657+

await send;

658+659+

expect(request).toHaveBeenCalledWith(

660+

"chat.send",

661+

expect.objectContaining({

662+

sessionKey: "agent:main",

663+

message: "use the newly selected model",

664+

}),

665+

);

666+

expect(host.chatMessage).toBe("");

667+

});

668+669+

it("preserves draft edits made while waiting for a model picker update", async () => {

670+

const switchUpdate = createDeferred<boolean>();

671+

const request = vi.fn(async (method: string) => {

672+

if (method === "chat.send") {

673+

return { status: "started" };

674+

}

675+

throw new Error(`Unexpected request: ${method}`);

676+

});

677+

const host = makeHost({

678+

client: { request } as unknown as ChatHost["client"],

679+

chatMessage: "send this",

680+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

681+

});

682+683+

const send = handleSendChat(host);

684+

await Promise.resolve();

685+

host.chatMessage = "keep typing";

686+687+

switchUpdate.resolve(true);

688+

await send;

689+690+

expect(request).toHaveBeenCalledWith(

691+

"chat.send",

692+

expect.objectContaining({

693+

sessionKey: "agent:main",

694+

message: "send this",

695+

}),

696+

);

697+

expect(host.chatMessage).toBe("keep typing");

698+

});

699+700+

it("preserves attachment payloads for edited drafts after a delayed send", async () => {

701+

const switchUpdate = createDeferred<boolean>();

702+

const request = vi.fn(async (method: string) => {

703+

if (method === "chat.send") {

704+

return { status: "started" };

705+

}

706+

throw new Error(`Unexpected request: ${method}`);

707+

});

708+

const file = new File(["%PDF-1.4\n"], "brief.pdf", { type: "application/pdf" });

709+

const attachment = registerChatAttachmentPayload({

710+

attachment: {

711+

id: "delayed-att",

712+

mimeType: "application/pdf",

713+

fileName: "brief.pdf",

714+

sizeBytes: file.size,

715+

},

716+

dataUrl: "data:application/pdf;base64,JVBERi0xLjQK",

717+

file,

718+

});

719+

const host = makeHost({

720+

client: { request } as unknown as ChatHost["client"],

721+

chatAttachments: [attachment],

722+

chatMessage: "send this",

723+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

724+

});

725+726+

const send = handleSendChat(host);

727+

await Promise.resolve();

728+

host.chatMessage = "keep typing with the attachment";

729+730+

switchUpdate.resolve(true);

731+

await send;

732+733+

expect(request).toHaveBeenCalledWith(

734+

"chat.send",

735+

expect.objectContaining({

736+

attachments: [

737+

expect.objectContaining({

738+

content: "JVBERi0xLjQK",

739+

fileName: "brief.pdf",

740+

mimeType: "application/pdf",

741+

type: "file",

742+

}),

743+

],

744+

message: "send this",

745+

}),

746+

);

747+

expect(host.chatMessage).toBe("keep typing with the attachment");

748+

expect(host.chatAttachments).toEqual([attachment]);

749+

expect(getChatAttachmentDataUrl(attachment)).toBe("data:application/pdf;base64,JVBERi0xLjQK");

750+

});

751+752+

it("preserves draft text when only attachments change during a delayed send", async () => {

753+

const switchUpdate = createDeferred<boolean>();

754+

const request = vi.fn(async (method: string) => {

755+

if (method === "chat.send") {

756+

return { status: "started" };

757+

}

758+

throw new Error(`Unexpected request: ${method}`);

759+

});

760+

const originalFile = new File(["original"], "original.pdf", { type: "application/pdf" });

761+

const editedFile = new File(["edited"], "edited.pdf", { type: "application/pdf" });

762+

const originalAttachment = registerChatAttachmentPayload({

763+

attachment: {

764+

id: "original-att",

765+

mimeType: "application/pdf",

766+

fileName: "original.pdf",

767+

sizeBytes: originalFile.size,

768+

},

769+

dataUrl: "data:application/pdf;base64,b3JpZ2luYWw=",

770+

file: originalFile,

771+

});

772+

const editedAttachment = registerChatAttachmentPayload({

773+

attachment: {

774+

id: "edited-att",

775+

mimeType: "application/pdf",

776+

fileName: "edited.pdf",

777+

sizeBytes: editedFile.size,

778+

},

779+

dataUrl: "data:application/pdf;base64,ZWRpdGVk",

780+

file: editedFile,

781+

});

782+

const host = makeHost({

783+

client: { request } as unknown as ChatHost["client"],

784+

chatAttachments: [originalAttachment],

785+

chatMessage: "send this",

786+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

787+

});

788+789+

const send = handleSendChat(host);

790+

await Promise.resolve();

791+

host.chatAttachments = [editedAttachment];

792+793+

switchUpdate.resolve(true);

794+

await send;

795+796+

expect(request).toHaveBeenCalledWith(

797+

"chat.send",

798+

expect.objectContaining({

799+

attachments: [

800+

expect.objectContaining({

801+

content: "b3JpZ2luYWw=",

802+

fileName: "original.pdf",

803+

mimeType: "application/pdf",

804+

type: "file",

805+

}),

806+

],

807+

message: "send this",

808+

}),

809+

);

810+

expect(host.chatMessage).toBe("send this");

811+

expect(host.chatAttachments).toEqual([editedAttachment]);

812+

expect(getChatAttachmentDataUrl(originalAttachment)).toBeNull();

813+

expect(getChatAttachmentDataUrl(editedAttachment)).toBe("data:application/pdf;base64,ZWRpdGVk");

814+

});

815+816+

it("sends snapshotted attachment payloads when the composer removes them during a wait", async () => {

817+

const switchUpdate = createDeferred<boolean>();

818+

const request = vi.fn(async (method: string) => {

819+

if (method === "chat.send") {

820+

return { status: "started" };

821+

}

822+

throw new Error(`Unexpected request: ${method}`);

823+

});

824+

const file = new File(["original"], "original.pdf", { type: "application/pdf" });

825+

const attachment = registerChatAttachmentPayload({

826+

attachment: {

827+

id: "removed-att",

828+

mimeType: "application/pdf",

829+

fileName: "original.pdf",

830+

sizeBytes: file.size,

831+

},

832+

dataUrl: "data:application/pdf;base64,b3JpZ2luYWw=",

833+

file,

834+

});

835+

const host = makeHost({

836+

client: { request } as unknown as ChatHost["client"],

837+

chatAttachments: [attachment],

838+

chatMessage: "send this",

839+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

840+

});

841+842+

const send = handleSendChat(host);

843+

await Promise.resolve();

844+

host.chatAttachments = [];

845+

releaseChatAttachmentPayloads([attachment]);

846+847+

switchUpdate.resolve(true);

848+

await send;

849+850+

expect(request).toHaveBeenCalledWith(

851+

"chat.send",

852+

expect.objectContaining({

853+

attachments: [

854+

expect.objectContaining({

855+

content: "b3JpZ2luYWw=",

856+

fileName: "original.pdf",

857+

mimeType: "application/pdf",

858+

type: "file",

859+

}),

860+

],

861+

message: "send this",

862+

}),

863+

);

864+

expect(host.chatMessage).toBe("send this");

865+

expect(host.chatAttachments).toEqual([]);

866+

expect(getChatAttachmentDataUrl(attachment)).toBeNull();

867+

});

868+869+

it("does not wait on model picker updates from another session", async () => {

870+

const otherSessionSwitch = createDeferred<boolean>();

871+

const request = vi.fn(async (method: string) => {

872+

if (method === "chat.send") {

873+

return { status: "started" };

874+

}

875+

throw new Error(`Unexpected request: ${method}`);

876+

});

877+

const host = makeHost({

878+

client: { request } as unknown as ChatHost["client"],

879+

sessionKey: "agent:other",

880+

chatMessage: "send in other session",

881+

chatModelSwitchPromises: { "agent:main": otherSessionSwitch.promise },

882+

});

883+884+

await handleSendChat(host);

885+886+

expect(request).toHaveBeenCalledWith(

887+

"chat.send",

888+

expect.objectContaining({

889+

sessionKey: "agent:other",

890+

message: "send in other session",

891+

}),

892+

);

893+

otherSessionSwitch.resolve(false);

894+

});

895+896+

it("keeps the draft when a pending model picker update fails", async () => {

897+

const switchUpdate = createDeferred<boolean>();

898+

const request = vi.fn(async (method: string) => {

899+

throw new Error(`Unexpected request: ${method}`);

900+

});

901+

const host = makeHost({

902+

client: { request } as unknown as ChatHost["client"],

903+

chatMessage: "do not send on rollback",

904+

chatModelSwitchPromises: { "agent:main": switchUpdate.promise },

905+

});

906+907+

const send = handleSendChat(host);

908+

await Promise.resolve();

909+

switchUpdate.resolve(false);

910+

await send;

911+912+

expect(request).not.toHaveBeenCalled();

913+

expect(host.chatMessage).toBe("do not send on rollback");

914+

});

915+634916

it("keeps slash-command model changes in sync with the chat header cache", async () => {

635917

vi.stubGlobal(

636918

"fetch",