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

推荐订阅源

月光博客
月光博客
云风的 BLOG
云风的 BLOG
小众软件
小众软件
雷峰网
雷峰网
博客园 - 【当耐特】
V
V2EX
WordPress大学
WordPress大学
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
The Cloudflare Blog
Jina AI
Jina AI
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(cli): normalize Gemini config mutation refs · opencla...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

11

import fs from "node:fs";

22

import type { Command } from "commander";

33

import JSON5 from "json5";

4+

import { normalizeConfiguredProviderCatalogModelId } from "../agents/model-ref-shared.js";

45

import { readConfigFileSnapshot, replaceConfigFile } from "../config/config.js";

56

import { AUTO_MANAGED_CONFIG_META_PATHS } from "../config/io.meta.js";

67

import { formatConfigIssueLines, normalizeConfigIssues } from "../config/issue-format.js";

@@ -116,30 +117,136 @@ function normalizeAgentDefaultModelValueForConfigMutation(value: unknown): unkno

116117

return next;

117118

}

118119120+

function normalizeAgentListModelRefsForConfigMutation(value: unknown): unknown {

121+

if (!Array.isArray(value)) {

122+

return value;

123+

}

124+125+

let mutated = false;

126+

const next = value.map((agent) => {

127+

if (!isPlainRecord(agent)) {

128+

return agent;

129+

}

130+131+

let nextAgent = agent;

132+

if (Object.prototype.hasOwnProperty.call(agent, "model")) {

133+

const model = normalizeAgentDefaultModelValueForConfigMutation(agent.model);

134+

if (model !== agent.model) {

135+

nextAgent = { ...nextAgent, model };

136+

mutated = true;

137+

}

138+

}

139+

if (isPlainRecord(agent.models)) {

140+

const models = normalizeAgentModelMapForConfig(agent.models);

141+

if (models !== agent.models) {

142+

nextAgent = { ...nextAgent, models };

143+

mutated = true;

144+

}

145+

}

146+

return nextAgent;

147+

});

148+149+

return mutated ? next : value;

150+

}

151+152+

function normalizeProviderCatalogModelsForConfigMutation(

153+

provider: string,

154+

models: unknown,

155+

): unknown {

156+

if (!Array.isArray(models)) {

157+

return models;

158+

}

159+160+

let mutated = false;

161+

const next = models.map((model) => {

162+

if (!isPlainRecord(model) || typeof model.id !== "string") {

163+

return model;

164+

}

165+

const trimmed = model.id.trim();

166+

if (!trimmed) {

167+

return model;

168+

}

169+

const id = normalizeConfiguredProviderCatalogModelId(provider, trimmed);

170+

if (id === model.id) {

171+

return model;

172+

}

173+

mutated = true;

174+

return { ...model, id };

175+

});

176+177+

return mutated ? next : models;

178+

}

179+180+

function normalizeModelProviderRefsForConfigMutation(

181+

providers: NonNullable<OpenClawConfig["models"]>["providers"] | undefined,

182+

): unknown {

183+

if (!isPlainRecord(providers)) {

184+

return providers;

185+

}

186+187+

let mutated = false;

188+

const nextProviders: Record<string, unknown> = { ...providers };

189+

for (const [provider, providerConfig] of Object.entries(providers)) {

190+

if (!isPlainRecord(providerConfig)) {

191+

continue;

192+

}

193+

const models = normalizeProviderCatalogModelsForConfigMutation(provider, providerConfig.models);

194+

if (models === providerConfig.models) {

195+

continue;

196+

}

197+

nextProviders[provider] = { ...providerConfig, models };

198+

mutated = true;

199+

}

200+201+

return mutated ? nextProviders : providers;

202+

}

203+119204

function normalizeConfigMutationModelRefs(cfg: OpenClawConfig): OpenClawConfig {

120205

const defaults = cfg.agents?.defaults;

121-

if (!defaults) {

122-

return cfg;

123-

}

206+

const agentList = cfg.agents?.list;

207+

const providers = cfg.models?.providers;

208+

const normalizedAgentList = normalizeAgentListModelRefsForConfigMutation(agentList);

209+

const normalizedProviders = normalizeModelProviderRefsForConfigMutation(providers) as

210+

| typeof providers

211+

| undefined;

124212125213

return {

126214

...cfg,

127-

agents: {

128-

...cfg.agents,

129-

defaults: {

130-

...defaults,

131-

...(defaults.model !== undefined

132-

? {

133-

model: normalizeAgentDefaultModelValueForConfigMutation(

134-

defaults.model,

135-

) as typeof defaults.model,

136-

}

137-

: undefined),

138-

...(defaults.models !== undefined

139-

? { models: normalizeAgentModelMapForConfig(defaults.models) }

140-

: undefined),

141-

},

142-

},

215+

...(defaults || normalizedAgentList !== agentList

216+

? {

217+

agents: {

218+

...cfg.agents,

219+

...(defaults

220+

? {

221+

defaults: {

222+

...defaults,

223+

...(defaults.model !== undefined

224+

? {

225+

model: normalizeAgentDefaultModelValueForConfigMutation(

226+

defaults.model,

227+

) as typeof defaults.model,

228+

}

229+

: undefined),

230+

...(defaults.models !== undefined

231+

? { models: normalizeAgentModelMapForConfig(defaults.models) }

232+

: undefined),

233+

},

234+

}

235+

: undefined),

236+

...(normalizedAgentList !== agentList

237+

? { list: normalizedAgentList as typeof agentList }

238+

: undefined),

239+

},

240+

}

241+

: undefined),

242+

...(normalizedProviders !== providers

243+

? {

244+

models: {

245+

...cfg.models,

246+

providers: normalizedProviders,

247+

},

248+

}

249+

: undefined),

143250

};

144251

}

145252