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

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

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: skip runtime normalization for broad model lists · o...
shakkernerd · 2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -35,6 +35,7 @@ type DiscoveredProviderRuntimeModelLike = Omit<ProviderRuntimeModelLike, "api">

3535
3636

type DiscoverModelsOptions = {

3737

providerFilter?: string;

38+

normalizeModels?: boolean;

3839

};

3940
4041

type InMemoryAuthStorageBackendLike = {

@@ -149,17 +150,24 @@ function createOpenClawModelRegistry(

149150

const providerFilter = options?.providerFilter ? normalizeProviderId(options.providerFilter) : "";

150151

const matchesProviderFilter = (entry: Model<Api>) =>

151152

!providerFilter || normalizeProviderId(entry.provider) === providerFilter;

153+

const shouldNormalize = options?.normalizeModels !== false;

152154
153-

registry.getAll = () =>

154-

getAll()

155-

.filter((entry: Model<Api>) => matchesProviderFilter(entry))

156-

.map((entry: Model<Api>) => normalizeDiscoveredPiModel(entry, agentDir));

157-

registry.getAvailable = () =>

158-

getAvailable()

159-

.filter((entry: Model<Api>) => matchesProviderFilter(entry))

160-

.map((entry: Model<Api>) => normalizeDiscoveredPiModel(entry, agentDir));

155+

registry.getAll = () => {

156+

const entries = getAll().filter((entry: Model<Api>) => matchesProviderFilter(entry));

157+

return shouldNormalize

158+

? entries.map((entry: Model<Api>) => normalizeDiscoveredPiModel(entry, agentDir))

159+

: entries;

160+

};

161+

registry.getAvailable = () => {

162+

const entries = getAvailable().filter((entry: Model<Api>) => matchesProviderFilter(entry));

163+

return shouldNormalize

164+

? entries.map((entry: Model<Api>) => normalizeDiscoveredPiModel(entry, agentDir))

165+

: entries;

166+

};

161167

registry.find = (provider: string, modelId: string) =>

162-

normalizeDiscoveredPiModel(find(provider, modelId), agentDir);

168+

shouldNormalize

169+

? normalizeDiscoveredPiModel(find(provider, modelId), agentDir)

170+

: find(provider, modelId);

163171
164172

return registry;

165173

}

Original file line numberDiff line numberDiff line change

@@ -153,7 +153,7 @@ function installModelsListCommandForwardCompatMocks() {

153153

vi.doMock("./list.registry-load.js", () => ({

154154

loadListModelRegistry: async (

155155

cfg: unknown,

156-

opts?: { providerFilter?: string },

156+

opts?: { providerFilter?: string; normalizeModels?: boolean },

157157

): Promise<{

158158

models: Array<{ provider: string; id: string }>;

159159

availableKeys?: Set<string>;

@@ -173,7 +173,7 @@ function installModelsListCommandForwardCompatMocks() {

173173

loadConfiguredListModelRegistry: (

174174

_cfg: unknown,

175175

_entries: unknown,

176-

opts?: { providerFilter?: string },

176+

opts?: { providerFilter?: string; normalizeModels?: boolean },

177177

) => {

178178

mocks.loadModelRegistry(mocks.resolvedConfig, opts);

179179

return {

@@ -618,6 +618,7 @@ describe("modelsListCommand forward-compat", () => {

618618
619619

expect(mocks.loadModelRegistry).toHaveBeenCalledWith(mocks.resolvedConfig, {

620620

providerFilter: undefined,

621+

normalizeModels: false,

621622

});

622623

expect(mocks.loadProviderCatalogModelsForList).not.toHaveBeenCalled();

623624

expect(mocks.resolveModelWithRegistry).not.toHaveBeenCalled();

@@ -653,6 +654,7 @@ describe("modelsListCommand forward-compat", () => {

653654

mocks.resolvedConfig,

654655

expect.objectContaining({

655656

providerFilter: "openai-codex",

657+

normalizeModels: true,

656658

}),

657659

);

658660

expect(mocks.loadProviderCatalogModelsForList).toHaveBeenNthCalledWith(1, {

Original file line numberDiff line numberDiff line change

@@ -92,7 +92,10 @@ export async function modelsListCommand(

9292

const shouldLoadRegistry = sourcePlan?.requiresInitialRegistry ?? false;

9393

const loadRegistryState = async () => {

9494

const { loadListModelRegistry } = await loadRegistryLoadModule();

95-

const loaded = await loadListModelRegistry(cfg, { providerFilter });

95+

const loaded = await loadListModelRegistry(cfg, {

96+

providerFilter,

97+

normalizeModels: Boolean(providerFilter),

98+

});

9699

modelRegistry = loaded.registry;

97100

discoveredKeys = loaded.discoveredKeys;

98101

availableKeys = loaded.availableKeys;

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ import { modelKey } from "./shared.js";

1010
1111

export async function loadListModelRegistry(

1212

cfg: OpenClawConfig,

13-

opts?: { providerFilter?: string },

13+

opts?: { providerFilter?: string; normalizeModels?: boolean },

1414

) {

1515

const loaded = await loadModelRegistry(cfg, opts);

1616

return {

Original file line numberDiff line numberDiff line change

@@ -107,11 +107,15 @@ function loadAvailableModels(registry: ModelRegistry, cfg: OpenClawConfig): Mode

107107

}

108108

}

109109
110-

export async function loadModelRegistry(cfg: OpenClawConfig, opts?: { providerFilter?: string }) {

110+

export async function loadModelRegistry(

111+

cfg: OpenClawConfig,

112+

opts?: { providerFilter?: string; normalizeModels?: boolean },

113+

) {

111114

const agentDir = resolveOpenClawAgentDir();

112115

const authStorage = discoverAuthStorage(agentDir, { readOnly: true });

113116

const registry = discoverModels(authStorage, agentDir, {

114117

providerFilter: opts?.providerFilter,

118+

normalizeModels: opts?.normalizeModels,

115119

});

116120

const models = registry.getAll().filter(

117121

(model) =>