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

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
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(model): clarify session-scoped model switches · openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -31,6 +31,7 @@ Docs: https://docs.openclaw.ai

3131
3232

### Fixes

3333
34+

- Model commands: clarify direct and inline `/model` acknowledgements for non-default selections as session-scoped. Thanks @addu2612.

3435

- TUI/chat: skip full provider model normalization during context-window warmup while preserving provider-owned context metadata, avoiding cold-start stalls with large model registries. Thanks @547895019.

3536

- Memory Wiki: accept relative Markdown links that include the `.md` suffix during broken-wikilink validation, avoiding false positives for native render-mode links. Thanks @Kenneth8128.

3637

- OpenAI Codex: show the device-pairing code in the interactive SSH/headless prompt while keeping the short-lived code out of persistent runtime logs. Fixes #74212. Thanks @da22le123.

Original file line numberDiff line numberDiff line change

@@ -596,7 +596,7 @@ export async function handleDirectiveOnly(

596596

parts.push(

597597

modelSelection.isDefault

598598

? `Model reset to default (${labelWithAlias}).`

599-

: `Model set to ${labelWithAlias}.`,

599+

: `Model set to ${labelWithAlias} for this session.`,

600600

);

601601

if (profileOverride) {

602602

parts.push(`Auth profile set to ${profileOverride}.`);

Original file line numberDiff line numberDiff line change

@@ -939,6 +939,7 @@ describe("handleDirectiveOnly model persist behavior (fixes #1435)", () => {

939939
940940

expect(result?.text).toContain("Model set to");

941941

expect(result?.text).toContain("openai/gpt-4o");

942+

expect(result?.text).toContain("for this session");

942943

expect(result?.text).not.toContain("failed");

943944

expect(sessionEntry.liveModelSwitchPending).toBe(true);

944945

});

@@ -1046,7 +1047,9 @@ describe("handleDirectiveOnly model persist behavior (fixes #1435)", () => {

10461047

}),

10471048

);

10481049
1049-

expect(result?.text).toContain("Model set to Opus (anthropic/claude-opus-4-6).");

1050+

expect(result?.text).toContain(

1051+

"Model set to Opus (anthropic/claude-opus-4-6) for this session.",

1052+

);

10501053

expect(result?.text).toContain("Auth profile set to anthropic:work.");

10511054

expect(sessionEntry.providerOverride).toBe("anthropic");

10521055

expect(sessionEntry.modelOverride).toBe("claude-opus-4-6");

Original file line numberDiff line numberDiff line change

@@ -303,7 +303,7 @@ export async function applyInlineDirectiveOverrides(params: {

303303

: undefined,

304304

modelSelection.isDefault

305305

? `Model reset to default (${labelWithAlias}).`

306-

: `Model set to ${labelWithAlias}.`,

306+

: `Model set to ${labelWithAlias} for this session.`,

307307

modelResolution.profileOverride

308308

? `Auth profile set to ${modelResolution.profileOverride}.`

309309

: undefined,