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

推荐订阅源

F
Fortinet All Blogs
有赞技术团队
有赞技术团队
量子位
N
Netflix TechBlog - Medium
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
V2EX
IT之家
IT之家
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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(discord): persist stale model picker overrides · open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,8 +1,16 @@

1+

import { mkdtemp, rm } from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

14

import { ChannelType } from "discord-api-types/v10";

25

import * as commandRegistryModule from "openclaw/plugin-sdk/command-auth";

36

import type { ChatCommandDefinition, CommandArgsParsing } from "openclaw/plugin-sdk/command-auth";

47

import type { ModelsProviderData } from "openclaw/plugin-sdk/command-auth";

5-

import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";

8+

import {

9+

loadSessionStore,

10+

resolveStorePath,

11+

saveSessionStore,

12+

type OpenClawConfig,

13+

} from "openclaw/plugin-sdk/config-runtime";

614

import * as globalsModule from "openclaw/plugin-sdk/runtime-env";

715

import * as commandTextModule from "openclaw/plugin-sdk/text-runtime";

816

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

@@ -40,6 +48,8 @@ type MockInteraction = {

4048

client: object;

4149

};

425051+

let tempDir: string;

52+4353

function createModelsProviderData(entries: Record<string, string[]>): ModelsProviderData {

4454

return createBaseModelsProviderData(entries, { defaultProviderOrder: "sorted" });

4555

}

@@ -61,6 +71,9 @@ async function waitForCondition(

61716272

function createModelPickerContext(): ModelPickerContext {

6373

const cfg = {

74+

session: {

75+

store: path.join(tempDir, "sessions.json"),

76+

},

6477

channels: {

6578

discord: {

6679

dm: {

@@ -162,7 +175,7 @@ async function safeInteractionCall<T>(_label: string, fn: () => Promise<T>): Pro

162175

}

163176164177

function createDispatchSpy() {

165-

return vi.fn<DispatchDiscordCommandInteraction>().mockResolvedValue();

178+

return vi.fn<DispatchDiscordCommandInteraction>().mockResolvedValue({ accepted: true });

166179

}

167180168181

function createModelPickerFallbackButton(

@@ -264,13 +277,15 @@ function createBoundThreadBindingManager(params: {

264277

}

265278266279

describe("Discord model picker interactions", () => {

267-

beforeEach(() => {

280+

beforeEach(async () => {

281+

tempDir = await mkdtemp(path.join(os.tmpdir(), "openclaw-discord-model-picker-"));

268282

vi.useRealTimers();

269283

vi.restoreAllMocks();

270284

});

271285272-

afterEach(() => {

286+

afterEach(async () => {

273287

vi.useRealTimers();

288+

await rm(tempDir, { recursive: true, force: true });

274289

});

275290276291

it("registers distinct fallback ids for button and select handlers", () => {

@@ -619,6 +634,103 @@ describe("Discord model picker interactions", () => {

619634

expect(mismatchLog).toContain("session key agent:worker:subagent:bound");

620635

});

621636637+

it("persists suffixed LM Studio model overrides when dispatch leaves the routed session stale", async () => {

638+

const context = createModelPickerContext();

639+

context.threadBindings = createBoundThreadBindingManager({

640+

accountId: "default",

641+

threadId: "thread-bound",

642+

targetSessionKey: "agent:worker:subagent:bound",

643+

agentId: "worker",

644+

});

645+

const pickerData = createModelsProviderData({

646+

anthropic: ["claude-sonnet-4-5"],

647+

lmstudio: ["unsloth/gemma-4-26b-a4b-it@iq4_xs"],

648+

});

649+

const modelCommand = createModelCommandDefinition();

650+

const storePath = resolveStorePath(context.cfg.session?.store, { agentId: "worker" });

651+

await saveSessionStore(storePath, {

652+

"agent:worker:subagent:bound": {

653+

updatedAt: Date.now(),

654+

sessionId: "bound-session",

655+

},

656+

});

657+658+

vi.spyOn(modelPickerModule, "loadDiscordModelPickerData").mockResolvedValue(pickerData);

659+

mockModelCommandPipeline(modelCommand);

660+661+

const dispatchSpy = createDispatchSpy();

662+

const button = createModelPickerFallbackButton(context, dispatchSpy);

663+

const submitInteraction = createInteraction({ userId: "owner" });

664+

submitInteraction.channel = {

665+

type: ChannelType.PublicThread,

666+

id: "thread-bound",

667+

};

668+669+

await button.run(submitInteraction as unknown as PickerButtonInteraction, {

670+

...createModelsViewSubmitData(),

671+

p: "lmstudio",

672+

mi: "1",

673+

});

674+675+

const store = loadSessionStore(storePath, { skipCache: true });

676+

expect(store["agent:worker:subagent:bound"]?.providerOverride).toBe("lmstudio");

677+

expect(store["agent:worker:subagent:bound"]?.modelOverride).toBe(

678+

"unsloth/gemma-4-26b-a4b-it@iq4_xs",

679+

);

680+

expect(store["agent:worker:subagent:bound"]?.liveModelSwitchPending).toBe(true);

681+

expectDispatchedModelSelection({

682+

dispatchSpy,

683+

model: "lmstudio/unsloth/gemma-4-26b-a4b-it@iq4_xs",

684+

});

685+

expect(JSON.stringify(submitInteraction.followUp.mock.calls[0]?.[0])).toContain(

686+

"✅ Model set to lmstudio/unsloth/gemma-4-26b-a4b-it@iq4_xs.",

687+

);

688+

});

689+690+

it("does not write a fallback override when hidden /model dispatch is rejected", async () => {

691+

const context = createModelPickerContext();

692+

context.threadBindings = createBoundThreadBindingManager({

693+

accountId: "default",

694+

threadId: "thread-bound",

695+

targetSessionKey: "agent:worker:subagent:bound",

696+

agentId: "worker",

697+

});

698+

const pickerData = createDefaultModelPickerData();

699+

const modelCommand = createModelCommandDefinition();

700+

const storePath = resolveStorePath(context.cfg.session?.store, { agentId: "worker" });

701+

await saveSessionStore(storePath, {

702+

"agent:worker:subagent:bound": {

703+

updatedAt: Date.now(),

704+

sessionId: "bound-session",

705+

},

706+

});

707+708+

vi.spyOn(modelPickerModule, "loadDiscordModelPickerData").mockResolvedValue(pickerData);

709+

mockModelCommandPipeline(modelCommand);

710+711+

const button = createModelPickerFallbackButton(

712+

context,

713+

vi.fn<DispatchDiscordCommandInteraction>().mockResolvedValue({ accepted: false }),

714+

);

715+

const submitInteraction = createInteraction({ userId: "owner" });

716+

submitInteraction.channel = {

717+

type: ChannelType.PublicThread,

718+

id: "thread-bound",

719+

};

720+721+

await button.run(

722+

submitInteraction as unknown as PickerButtonInteraction,

723+

createModelsViewSubmitData(),

724+

);

725+726+

const store = loadSessionStore(storePath, { skipCache: true });

727+

expect(store["agent:worker:subagent:bound"]?.providerOverride).toBeUndefined();

728+

expect(store["agent:worker:subagent:bound"]?.modelOverride).toBeUndefined();

729+

expect(JSON.stringify(submitInteraction.followUp.mock.calls[0]?.[0])).toContain(

730+

"❌ Failed to apply openai/gpt-4o.",

731+

);

732+

});

733+622734

it("loads model picker data from the effective bound route", async () => {

623735

const context = createModelPickerContext();

624736

context.threadBindings = createBoundThreadBindingManager({