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

推荐订阅源

J
Java Code Geeks
量子位
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
A
About on SuperTechFans
腾讯CDC
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
博客园 - 司徒正美
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
博客园 - 【当耐特】
S
SegmentFault 最新的问题
美团技术团队
M
MIT News - Artificial intelligence
L
LangChain 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(providers): preserve defaults during auth setup · ope...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -105,6 +105,7 @@ const LOCAL_AUTH_METHOD_ID = "local";

105105

const LOCAL_PROFILE_ID = `${LOCAL_PROVIDER_ID}:default`;

106106

const LOCAL_API_KEY = "local-provider-key";

107107

const LOCAL_DEFAULT_MODEL = `${LOCAL_PROVIDER_ID}/demo-model`;

108+

const EXISTING_DEFAULT_MODEL = "amazon-bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0";

108109109110

function buildProvider(): ProviderPlugin {

110111

return {

@@ -133,6 +134,43 @@ function buildProvider(): ProviderPlugin {

133134

};

134135

}

135136137+

function buildProviderWithDefaultModelPatch(): ProviderPlugin {

138+

return {

139+

id: LOCAL_PROVIDER_ID,

140+

label: LOCAL_PROVIDER_LABEL,

141+

auth: [

142+

{

143+

id: LOCAL_AUTH_METHOD_ID,

144+

label: LOCAL_PROVIDER_LABEL,

145+

kind: "custom",

146+

run: async () => ({

147+

profiles: [

148+

{

149+

profileId: LOCAL_PROFILE_ID,

150+

credential: {

151+

type: "api_key",

152+

provider: LOCAL_PROVIDER_ID,

153+

key: LOCAL_API_KEY,

154+

},

155+

},

156+

],

157+

configPatch: {

158+

agents: {

159+

defaults: {

160+

model: { primary: LOCAL_DEFAULT_MODEL },

161+

models: {

162+

[LOCAL_DEFAULT_MODEL]: { alias: "Local default" },

163+

},

164+

},

165+

},

166+

},

167+

defaultModel: LOCAL_DEFAULT_MODEL,

168+

}),

169+

},

170+

],

171+

};

172+

}

173+136174

function buildParams(overrides: Partial<ApplyAuthChoiceParams> = {}): ApplyAuthChoiceParams {

137175

return {

138176

authChoice: LOCAL_PROVIDER_ID,

@@ -332,6 +370,48 @@ describe("applyAuthChoiceLoadedPluginProvider", () => {

332370

});

333371

});

334372373+

it("keeps an existing default when provider auth patches its own primary model", async () => {

374+

const provider = buildProviderWithDefaultModelPatch();

375+

resolvePluginProviders.mockReturnValue([provider]);

376+

resolveProviderPluginChoice.mockReturnValue({

377+

provider,

378+

method: provider.auth[0],

379+

});

380+

const note = vi.fn(async () => {});

381+382+

const result = await applyAuthChoiceLoadedPluginProvider(

383+

buildParams({

384+

config: {

385+

agents: {

386+

defaults: {

387+

model: { primary: EXISTING_DEFAULT_MODEL },

388+

models: {

389+

[EXISTING_DEFAULT_MODEL]: { alias: "Bedrock" },

390+

},

391+

},

392+

},

393+

},

394+

prompter: {

395+

note,

396+

} as unknown as ApplyAuthChoiceParams["prompter"],

397+

preserveExistingDefaultModel: true,

398+

}),

399+

);

400+401+

expect(result?.config.agents?.defaults?.model).toEqual({

402+

primary: EXISTING_DEFAULT_MODEL,

403+

});

404+

expect(result?.config.agents?.defaults?.models).toEqual({

405+

[EXISTING_DEFAULT_MODEL]: { alias: "Bedrock" },

406+

[LOCAL_DEFAULT_MODEL]: { alias: "Local default" },

407+

});

408+

expect(runProviderModelSelectedHook).not.toHaveBeenCalled();

409+

expect(note).toHaveBeenCalledWith(

410+

`Kept existing default model ${EXISTING_DEFAULT_MODEL}; ${LOCAL_DEFAULT_MODEL} is available.`,

411+

"Model configured",

412+

);

413+

});

414+335415

it("uses manifest-owned setup providers without loading the broad provider runtime", async () => {

336416

const provider = buildProvider();

337417

resolveManifestProviderAuthChoice.mockReturnValue({

@@ -611,6 +691,59 @@ describe("applyAuthChoiceLoadedPluginProvider", () => {

611691

);

612692

});

613693694+

it("preserves the existing primary model for plugin auth choices that patch defaults", async () => {

695+

const provider = buildProviderWithDefaultModelPatch();

696+

resolvePluginProviders.mockReturnValue([provider]);

697+

const note = vi.fn(async () => {});

698+699+

const result = await applyAuthChoicePluginProvider(

700+

buildParams({

701+

authChoice: `provider-plugin:${LOCAL_PROVIDER_ID}:${LOCAL_AUTH_METHOD_ID}`,

702+

config: {

703+

agents: {

704+

defaults: {

705+

model: { primary: EXISTING_DEFAULT_MODEL },

706+

models: {

707+

[EXISTING_DEFAULT_MODEL]: { alias: "Bedrock" },

708+

},

709+

},

710+

},

711+

},

712+

prompter: {

713+

note,

714+

} as unknown as ApplyAuthChoiceParams["prompter"],

715+

preserveExistingDefaultModel: true,

716+

}),

717+

{

718+

authChoice: `provider-plugin:${LOCAL_PROVIDER_ID}:${LOCAL_AUTH_METHOD_ID}`,

719+

pluginId: LOCAL_PROVIDER_ID,

720+

providerId: LOCAL_PROVIDER_ID,

721+

methodId: LOCAL_AUTH_METHOD_ID,

722+

label: LOCAL_PROVIDER_LABEL,

723+

},

724+

);

725+726+

expect(result?.config.agents?.defaults?.model).toEqual({

727+

primary: EXISTING_DEFAULT_MODEL,

728+

});

729+

expect(result?.config.agents?.defaults?.models).toEqual({

730+

[EXISTING_DEFAULT_MODEL]: { alias: "Bedrock" },

731+

[LOCAL_DEFAULT_MODEL]: { alias: "Local default" },

732+

});

733+

expect(result?.config.plugins).toEqual({

734+

entries: {

735+

[LOCAL_PROVIDER_ID]: {

736+

enabled: true,

737+

},

738+

},

739+

});

740+

expect(runProviderModelSelectedHook).not.toHaveBeenCalled();

741+

expect(note).toHaveBeenCalledWith(

742+

`Kept existing default model ${EXISTING_DEFAULT_MODEL}; ${LOCAL_DEFAULT_MODEL} is available.`,

743+

"Model configured",

744+

);

745+

});

746+614747

it("stops early when the plugin is disabled in config", async () => {

615748

const note = vi.fn(async () => {});

616749