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

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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(plugins): honor inferred agent model defaults · openc...
steipete · 2026-04-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

8585

- ACP/OpenCode: update the bundled acpx runtime to 0.6.0 and cover the OpenCode ACP bind path in Docker live tests.

8686

- Providers/OpenCode Go: add DeepSeek V4 Pro and DeepSeek V4 Flash to the Go catalog while the bundled Pi registry catches up. Fixes #71587.

8787

- Providers/OpenCode Go: route DeepSeek V4 Pro/Flash through the OpenAI-compatible Go endpoint and suppress invalid `reasoning_effort: "off"` payloads, fixing tool-enabled requests for `opencode-go/deepseek-v4-flash`. Fixes #71683.

88-

- Plugins/Skill Workshop: run the LLM reviewer on the configured agent default model instead of the hardcoded OpenAI SDK fallback when hook context lacks model metadata. Fixes #71659.

88+

- Plugins/model defaults: run Skill Workshop review, Active Memory recall, and session-memory slug generation on the configured agent default model instead of the hardcoded OpenAI SDK fallback when hook context lacks model metadata. Fixes #71659.

8989

- Providers/Venice: fill the required DeepSeek V4 `reasoning_content` placeholder for `venice/deepseek-v4-pro` and `venice/deepseek-v4-flash` replay turns without sending native DeepSeek `thinking` controls that Venice rejects. Fixes #71628.

9090

- Browser/existing-session: support per-profile Chrome MCP command/args, map `cdpUrl` to `--browserUrl` or `--wsEndpoint`, and avoid combining endpoint flags with `--userDataDir`. Fixes #47879, #48037, and #62706. Thanks @puneet1409, @zhehao, and @madkow1001.

9191

- Media/plugins: bound MIME sniffing and ZIP archive preflight before handing

Original file line numberDiff line numberDiff line change

@@ -922,6 +922,53 @@ describe("active-memory plugin", () => {

922922

});

923923

});

924924
925+

it("infers the configured provider for bare active-memory default models", async () => {

926+

api.config = {

927+

agents: {

928+

defaults: {

929+

model: { primary: "gpt-5.5" },

930+

},

931+

},

932+

models: {

933+

providers: {

934+

"openai-codex": {

935+

baseUrl: "https://chatgpt.com/backend-api/codex",

936+

models: [

937+

{

938+

id: "gpt-5.5",

939+

name: "GPT 5.5",

940+

reasoning: true,

941+

input: ["text"],

942+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

943+

contextWindow: 200_000,

944+

maxTokens: 128_000,

945+

},

946+

],

947+

},

948+

},

949+

},

950+

};

951+

api.pluginConfig = {

952+

agents: ["main"],

953+

};

954+

plugin.register(api as unknown as OpenClawPluginApi);

955+
956+

await hooks.before_prompt_build(

957+

{ prompt: "what wings should i order? bare model default", messages: [] },

958+

{

959+

agentId: "main",

960+

trigger: "user",

961+

sessionKey: "agent:main:main",

962+

messageProvider: "webchat",

963+

},

964+

);

965+
966+

expect(runEmbeddedPiAgent.mock.calls.at(-1)?.[0]).toMatchObject({

967+

provider: "openai-codex",

968+

model: "gpt-5.5",

969+

});

970+

});

971+
925972

it("skips recall when no model or explicit fallback resolves", async () => {

926973

api.config = {};

927974

api.pluginConfig = {

Original file line numberDiff line numberDiff line change

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

77

resolveAgentDir,

88

resolveAgentEffectiveModelPrimary,

99

resolveAgentWorkspaceDir,

10+

resolveDefaultModelForAgent,

1011

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

1112

import {

1213

resolveLivePluginConfigObject,

@@ -1550,13 +1551,11 @@ function extractRecentTurns(messages: unknown[]): ActiveRecallRecentTurn[] {

15501551

return turns;

15511552

}

15521553
1553-

function parseModelCandidate(modelRef: string | undefined) {

1554+

function parseModelCandidate(modelRef: string | undefined, defaultProvider = DEFAULT_PROVIDER) {

15541555

if (!modelRef) {

15551556

return undefined;

15561557

}

1557-

return (

1558-

parseModelRef(modelRef, DEFAULT_PROVIDER) ?? { provider: DEFAULT_PROVIDER, model: modelRef }

1559-

);

1558+

return parseModelRef(modelRef, defaultProvider) ?? { provider: defaultProvider, model: modelRef };

15601559

}

15611560
15621561

function getModelRef(

@@ -1570,14 +1569,20 @@ function getModelRef(

15701569

): { provider: string; model: string } | undefined {

15711570

const currentRunModel =

15721571

ctx?.modelProviderId && ctx?.modelId ? `${ctx.modelProviderId}/${ctx.modelId}` : undefined;

1572+

const configuredDefaultModel = resolveAgentEffectiveModelPrimary(api.config, agentId)

1573+

? resolveDefaultModelForAgent({ cfg: api.config, agentId })

1574+

: undefined;

1575+

const defaultProvider = configuredDefaultModel?.provider ?? DEFAULT_PROVIDER;

15731576

const candidates = [

15741577

config.model,

15751578

currentRunModel,

1576-

resolveAgentEffectiveModelPrimary(api.config, agentId),

1579+

configuredDefaultModel

1580+

? `${configuredDefaultModel.provider}/${configuredDefaultModel.model}`

1581+

: undefined,

15771582

config.modelFallback,

15781583

];

15791584

for (const candidate of candidates) {

1580-

const parsed = parseModelCandidate(candidate);

1585+

const parsed = parseModelCandidate(candidate, defaultProvider);

15811586

if (parsed) {

15821587

return parsed;

15831588

}

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,13 @@ vi.mock("../agents/agent-scope.js", () => ({

77

resolveDefaultAgentId: vi.fn(() => "main"),

88

resolveAgentWorkspaceDir: vi.fn(() => "/tmp/openclaw-agent"),

99

resolveAgentDir: vi.fn(() => "/tmp/openclaw-agent/.openclaw-agent"),

10-

resolveAgentEffectiveModelPrimary: vi.fn(() => null),

10+

resolveAgentEffectiveModelPrimary: vi.fn((cfg: OpenClawConfig) => {

11+

const model = cfg.agents?.defaults?.model;

12+

if (typeof model === "string") {

13+

return model;

14+

}

15+

return model?.primary;

16+

}),

1117

}));

1218
1319

vi.mock("../agents/pi-embedded.js", () => ({

@@ -58,4 +64,43 @@ describe("generateSlugViaLLM", () => {

5864

}),

5965

);

6066

});

67+
68+

it("infers provider metadata for bare configured agent models", async () => {

69+

await generateSlugViaLLM({

70+

sessionContent: "hello",

71+

cfg: {

72+

agents: {

73+

defaults: {

74+

model: { primary: "gpt-5.5" },

75+

},

76+

},

77+

models: {

78+

providers: {

79+

"openai-codex": {

80+

baseUrl: "https://chatgpt.com/backend-api/codex",

81+

models: [

82+

{

83+

id: "gpt-5.5",

84+

name: "GPT 5.5",

85+

reasoning: true,

86+

input: ["text"],

87+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

88+

contextWindow: 200_000,

89+

maxTokens: 128_000,

90+

},

91+

],

92+

},

93+

},

94+

},

95+

} as OpenClawConfig,

96+

});

97+
98+

expect(runEmbeddedPiAgentMock).toHaveBeenCalledOnce();

99+

expect(runEmbeddedPiAgentMock.mock.calls[0]?.[0]).toEqual(

100+

expect.objectContaining({

101+

provider: "openai-codex",

102+

model: "gpt-5.5",

103+

}),

104+

);

105+

});

61106

});

Original file line numberDiff line numberDiff line change

@@ -9,10 +9,8 @@ import {

99

resolveDefaultAgentId,

1010

resolveAgentWorkspaceDir,

1111

resolveAgentDir,

12-

resolveAgentEffectiveModelPrimary,

1312

} from "../agents/agent-scope.js";

14-

import { DEFAULT_PROVIDER, DEFAULT_MODEL } from "../agents/defaults.js";

15-

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

13+

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

1614

import { runEmbeddedPiAgent } from "../agents/pi-embedded.js";

1715

import { resolveAgentTimeoutMs } from "../agents/timeout.js";

1816

import type { OpenClawConfig } from "../config/types.openclaw.js";

@@ -55,11 +53,10 @@ ${params.sessionContent.slice(0, 2000)}

5553
5654

Reply with ONLY the slug, nothing else. Examples: "vendor-pitch", "api-design", "bug-fix"`;

5755
58-

// Resolve model from agent config instead of using hardcoded defaults

59-

const modelRef = resolveAgentEffectiveModelPrimary(params.cfg, agentId);

60-

const parsed = modelRef ? parseModelRef(modelRef, DEFAULT_PROVIDER) : null;

61-

const provider = parsed?.provider ?? DEFAULT_PROVIDER;

62-

const model = parsed?.model ?? DEFAULT_MODEL;

56+

const { provider, model } = resolveDefaultModelForAgent({

57+

cfg: params.cfg,

58+

agentId,

59+

});

6360

const timeoutMs = resolveSlugGeneratorTimeoutMs(params.cfg);

6461
6562

const result = await runEmbeddedPiAgent({