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

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
The GitHub Blog
The GitHub Blog
罗磊的独立博客
月光博客
月光博客
J
Java Code Geeks
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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
perf: lazy load hot test imports · openclaw/openclaw@53d213f
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -23,14 +23,13 @@ import { normalizeLowercaseStringOrEmpty } from "../shared/string-coerce.js";

2323

import { normalizeOptionalString } from "../shared/string-coerce.js";

2424

import type { ActiveMediaModel } from "./active-model.types.js";

2525

import { MediaAttachmentCache, selectAttachments } from "./attachments.js";

26-

import { resolveAutoMediaKeyProviders, resolveDefaultMediaModel } from "./defaults.js";

2726

import { isMediaUnderstandingSkipError } from "./errors.js";

2827

import { fileExists } from "./fs.js";

2928

import { extractGeminiResponse } from "./output-extract.js";

29+

import { normalizeMediaProviderId } from "./provider-id.js";

3030

import {

3131

buildMediaUnderstandingRegistry,

3232

getMediaUnderstandingProvider,

33-

normalizeMediaProviderId,

3433

} from "./provider-registry.js";

3534

import { providerSupportsCapability } from "./provider-supports.js";

3635

import { resolveModelEntries, resolveScopeDecision } from "./resolve.js";

@@ -155,6 +154,46 @@ function resolveCatalogImageModelId(params: {

155154

return normalizeOptionalString((autoEntry ?? matches[0])?.id);

156155

}

157156157+

function resolveDefaultMediaModelFromRegistry(params: {

158+

providerId: string;

159+

capability: MediaUnderstandingCapability;

160+

providerRegistry: ProviderRegistry;

161+

}): string | undefined {

162+

const provider = params.providerRegistry.get(normalizeMediaProviderId(params.providerId));

163+

return normalizeOptionalString(provider?.defaultModels?.[params.capability]);

164+

}

165+166+

function resolveAutoMediaKeyProvidersFromRegistry(params: {

167+

capability: MediaUnderstandingCapability;

168+

providerRegistry: ProviderRegistry;

169+

}): string[] {

170+

type AutoProviderEntry = {

171+

provider: MediaUnderstandingProvider;

172+

priority: number;

173+

};

174+

return [...params.providerRegistry.values()]

175+

.filter(

176+

(provider) =>

177+

provider.capabilities?.includes(params.capability) ??

178+

providerSupportsCapability(provider, params.capability),

179+

)

180+

.map((provider): AutoProviderEntry | null => {

181+

const priority = provider.autoPriority?.[params.capability];

182+

return typeof priority === "number" && Number.isFinite(priority)

183+

? { provider, priority }

184+

: null;

185+

})

186+

.filter((entry): entry is AutoProviderEntry => entry !== null)

187+

.toSorted((left, right) => {

188+

if (left.priority !== right.priority) {

189+

return left.priority - right.priority;

190+

}

191+

return left.provider.id.localeCompare(right.provider.id);

192+

})

193+

.map((entry) => normalizeMediaProviderId(entry.provider.id))

194+

.filter(Boolean);

195+

}

196+158197

async function explicitImageModelVisionStatus(params: {

159198

cfg: OpenClawConfig;

160199

providerId: string;

@@ -176,6 +215,7 @@ async function explicitImageModelVisionStatus(params: {

176215

async function resolveAutoImageModelId(params: {

177216

cfg: OpenClawConfig;

178217

providerId: string;

218+

providerRegistry: ProviderRegistry;

179219

explicitModel?: string;

180220

}): Promise<string | undefined> {

181221

const explicit = normalizeOptionalString(params.explicitModel);

@@ -193,14 +233,23 @@ async function resolveAutoImageModelId(params: {

193233

if (configuredModel) {

194234

return configuredModel;

195235

}

196-

const defaultModel = resolveDefaultMediaModel({

197-

cfg: params.cfg,

236+

const defaultModel = resolveDefaultMediaModelFromRegistry({

198237

providerId: params.providerId,

199238

capability: "image",

239+

providerRegistry: params.providerRegistry,

200240

});

201241

if (defaultModel) {

202242

return defaultModel;

203243

}

244+

const { resolveDefaultMediaModel } = await import("./defaults.js");

245+

const bundledDefaultModel = resolveDefaultMediaModel({

246+

cfg: params.cfg,

247+

providerId: params.providerId,

248+

capability: "image",

249+

});

250+

if (bundledDefaultModel) {

251+

return bundledDefaultModel;

252+

}

204253

const { loadModelCatalog, modelSupportsVision } = await loadModelCatalogApi();

205254

const catalog = await loadModelCatalog({ config: params.cfg });

206255

return resolveCatalogImageModelId({

@@ -499,7 +548,12 @@ async function resolveKeyEntry(params: {

499548

}

500549

const resolvedModel =

501550

capability === "image"

502-

? await resolveAutoImageModelId({ cfg, providerId, explicitModel: model })

551+

? await resolveAutoImageModelId({

552+

cfg,

553+

providerId,

554+

providerRegistry,

555+

explicitModel: model,

556+

})

503557

: model;

504558

if (capability === "image" && !resolvedModel) {

505559

return null;

@@ -518,8 +572,7 @@ async function resolveKeyEntry(params: {

518572

cfg,

519573

providerRegistry,

520574

capability,

521-

fallbackProviders: resolveAutoMediaKeyProviders({

522-

cfg,

575+

fallbackProviders: resolveAutoMediaKeyProvidersFromRegistry({

523576

capability,

524577

providerRegistry,

525578

}),

@@ -694,6 +747,7 @@ async function resolveActiveModelEntry(params: {

694747

? await resolveAutoImageModelId({

695748

cfg: params.cfg,

696749

providerId,

750+

providerRegistry: params.providerRegistry,

697751

explicitModel: params.activeModel?.model,

698752

})

699753

: params.activeModel?.model;