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

推荐订阅源

人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
U
Unit 42
GbyAI
GbyAI
B
Blog RSS Feed
博客园 - Franky
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research

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(gateway): fire session:patch hooks for model changes ...
giodl73-repo · 2026-05-16 · via Recent Commits to openclaw:main

@@ -113,6 +113,11 @@ import {

113113

import type { ModelAliasIndex } from "../../agents/model-selection.js";

114114

import type { ModelDefinitionConfig, OpenClawConfig } from "../../config/config.js";

115115

import type { SessionEntry } from "../../config/sessions.js";

116+

import {

117+

clearInternalHooks,

118+

registerInternalHook,

119+

type InternalHookEvent,

120+

} from "../../hooks/internal-hooks.js";

116121

import { enqueueSystemEvent } from "../../infra/system-events.js";

117122

import { createEmptyPluginRegistry } from "../../plugins/registry-empty.js";

118123

import { setActivePluginRegistry } from "../../plugins/runtime.js";

@@ -243,11 +248,13 @@ beforeEach(() => {

243248

vi.mocked(enqueueSystemEvent).mockClear();

244249

liveModelSwitchMocks.requestLiveSessionModelSwitch.mockReset().mockReturnValue(false);

245250

queueMocks.refreshQueuedFollowupSession.mockReset();

251+

clearInternalHooks();

246252

});

247253248254

afterEach(() => {

249255

setDirectiveTestProviders([]);

250256

clearRuntimeAuthProfileStoreSnapshots();

257+

clearInternalHooks();

251258

});

252259253260

function setAuthProfiles(profiles: Record<string, AuthProfileForTest>) {

@@ -1267,6 +1274,34 @@ describe("handleDirectiveOnly model persist behavior (fixes #1435)", () => {

12671274

});

12681275

});

126912761277+

it("fires session:patch when /model changes the persisted session model", async () => {

1278+

const events: InternalHookEvent[] = [];

1279+

registerInternalHook("session:patch", async (event) => {

1280+

events.push(event);

1281+

});

1282+

const sessionEntry = createSessionEntry();

1283+1284+

await handleDirectiveOnly(

1285+

createHandleParams({

1286+

directives: parseInlineDirectives("/model openai/gpt-4o"),

1287+

sessionEntry,

1288+

}),

1289+

);

1290+1291+

await vi.waitFor(() => expect(events).toHaveLength(1));

1292+

const event = events[0];

1293+

expect(event.type).toBe("session");

1294+

expect(event.action).toBe("patch");

1295+

expect(event.sessionKey).toBe(sessionKey);

1296+

const context = event.context;

1297+

expect(context.patch).toMatchObject({ key: sessionKey, model: "openai/gpt-4o" });

1298+

expect(context.sessionEntry).toMatchObject({

1299+

providerOverride: "openai",

1300+

modelOverride: "gpt-4o",

1301+

liveModelSwitchPending: true,

1302+

});

1303+

});

1304+12701305

it("keeps xhigh when switching to OpenCode Claude Opus 4.7", async () => {

12711306

const sessionEntry = createSessionEntry({ thinkingLevel: "xhigh" });

12721307

const sessionStore = { [sessionKey]: sessionEntry };