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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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(models): strip remaining provider self prefixes (#887...
charles-open · 2026-06-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

33

collectManifestModelIdNormalizationPolicies,

44

normalizeConfiguredProviderCatalogModelId,

55

normalizeStaticProviderModelIdWithPolicies,

6+

stripSelfProviderModelPrefix,

67

} from "./provider-model-id-normalization.js";

78
89

describe("provider model id policy normalization", () => {

@@ -37,13 +38,50 @@ describe("provider model id policy normalization", () => {

3738
3839

it("normalizes native Anthropic catalog refs without retaining the provider prefix", () => {

3940

expect(

40-

normalizeStaticProviderModelIdWithPolicies(

41-

"anthropic",

42-

"anthropic/claude-haiku-4-5",

43-

),

41+

normalizeStaticProviderModelIdWithPolicies("anthropic", "anthropic/claude-haiku-4-5"),

4442

).toBe("claude-haiku-4-5");

4543

expect(

4644

normalizeConfiguredProviderCatalogModelId("anthropic", "anthropic/claude-haiku-4-5"),

4745

).toBe("claude-haiku-4-5");

4846

});

47+
48+

it("normalizes provider-prefixed native catalog refs without stripping catalog prefixes", () => {

49+

expect(normalizeStaticProviderModelIdWithPolicies("google", "google/gemini-2.0-flash")).toBe(

50+

"google/gemini-2.0-flash",

51+

);

52+

expect(

53+

normalizeStaticProviderModelIdWithPolicies(

54+

"google-gemini-cli",

55+

"google-gemini-cli/gemini-2.0-flash",

56+

),

57+

).toBe("google-gemini-cli/gemini-2.0-flash");

58+

expect(

59+

normalizeStaticProviderModelIdWithPolicies(

60+

"google-vertex",

61+

"google-vertex/gemini-3-pro-preview",

62+

),

63+

).toBe("google-vertex/gemini-3-pro-preview");

64+

expect(normalizeStaticProviderModelIdWithPolicies("xai", "xai/grok-4-fast-reasoning")).toBe(

65+

"xai/grok-4-fast-reasoning",

66+

);

67+

expect(normalizeStaticProviderModelIdWithPolicies("openai", "openai/gpt-5.4")).toBe(

68+

"openai/gpt-5.4",

69+

);

70+

expect(

71+

normalizeStaticProviderModelIdWithPolicies("vercel-ai-gateway", "vercel-ai-gateway/opus-4.6"),

72+

).toBe("vercel-ai-gateway/opus-4.6");

73+

});

74+
75+

it("strips self provider model prefixes before runtime provider calls", () => {

76+

expect(stripSelfProviderModelPrefix("google", "google/gemini-2.0-flash")).toBe(

77+

"gemini-2.0-flash",

78+

);

79+

expect(stripSelfProviderModelPrefix("xai", "xai/grok-4-fast-reasoning")).toBe(

80+

"grok-4-fast-reasoning",

81+

);

82+

expect(stripSelfProviderModelPrefix("openai", "openai/gpt-5.4")).toBe("gpt-5.4");

83+

expect(stripSelfProviderModelPrefix("vercel-ai-gateway", "vercel-ai-gateway/opus-4.6")).toBe(

84+

"opus-4.6",

85+

);

86+

});

4987

});

Original file line numberDiff line numberDiff line change

@@ -58,6 +58,14 @@ function formatPrefixedModelId(prefix: string, modelId: string): string {

5858

return `${prefix.replace(/\/+$/u, "")}/${modelId.replace(/^\/+/u, "")}`;

5959

}

6060
61+

export function stripSelfProviderModelPrefix(provider: string, model: string): string {

62+

const prefix = `${normalizeLowercaseStringOrEmpty(provider)}/`;

63+

const trimmed = model.trim();

64+

return normalizeLowercaseStringOrEmpty(trimmed).startsWith(prefix)

65+

? trimmed.slice(prefix.length)

66+

: model;

67+

}

68+
6169

export function normalizeProviderModelIdWithPolicies(params: {

6270

provider: string;

6371

policies: ReadonlyMap<string, ManifestModelIdNormalizationProvider>;

@@ -157,6 +165,9 @@ export function normalizeBuiltInProviderModelId(provider: string, model: string)

157165

};

158166

return xaiAliases[normalizeLowercaseStringOrEmpty(model)] ?? model;

159167

}

168+

if (normalizedProvider === "openai") {

169+

return model;

170+

}

160171

if (normalizedProvider === "together") {

161172

return normalizeTogetherModelId(model);

162173

}

Original file line numberDiff line numberDiff line change

@@ -1787,33 +1787,33 @@ describe("runWithModelFallback", () => {

17871787

]);

17881788

});

17891789
1790-

it("normalizes prefixed Anthropic fallback candidates independently", () => {

1790+

it("normalizes self-prefixed fallback candidates independently", () => {

17911791

const cfg = makeCfg({

17921792

agents: {

17931793

defaults: {

17941794

model: {

1795-

primary: "anthropic/claude-sonnet-4-6",

1796-

fallbacks: ["anthropic/claude-haiku-4-5", "anthropic/claude-opus-4-7"],

1795+

primary: "google/gemini-2.0-flash",

1796+

fallbacks: ["xai/grok-4-fast-reasoning", "openai/gpt-5.4"],

17971797

},

17981798

models: {

1799-

"anthropic/claude-sonnet-4-6": {},

1800-

"anthropic/claude-haiku-4-5": {},

1801-

"anthropic/claude-opus-4-7": {},

1799+

"google/gemini-2.0-flash": {},

1800+

"xai/grok-4-fast": {},

1801+

"openai/gpt-5.4": {},

18021802

},

18031803

},

18041804

},

18051805

});

18061806
18071807

const candidates = testing.resolveFallbackCandidates({

18081808

cfg,

1809-

provider: "anthropic",

1810-

model: "anthropic/claude-sonnet-4-6",

1809+

provider: "google",

1810+

model: "google/gemini-2.0-flash",

18111811

});

18121812
18131813

expect(candidates).toEqual([

1814-

{ provider: "anthropic", model: "claude-sonnet-4-6" },

1815-

{ provider: "anthropic", model: "claude-haiku-4-5" },

1816-

{ provider: "anthropic", model: "claude-opus-4-7" },

1814+

{ provider: "google", model: "gemini-2.0-flash" },

1815+

{ provider: "xai", model: "grok-4-fast" },

1816+

{ provider: "openai", model: "gpt-5.4" },

18171817

]);

18181818

});

18191819
Original file line numberDiff line numberDiff line change

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

44

normalizeProviderId as normalizeProviderIdCore,

55

normalizeProviderIdForAuth as normalizeProviderIdForAuthCore,

66

} from "@openclaw/model-catalog-core/provider-id";

7+

import { stripSelfProviderModelPrefix } from "@openclaw/model-catalog-core/provider-model-id-normalization";

78

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

89

import type { PluginManifestRecord } from "../plugins/manifest-registry.js";

910

import { modelKey as sharedModelKey, normalizeStaticProviderModelId } from "./model-ref-shared.js";

@@ -63,7 +64,8 @@ function normalizeProviderModelId(

6364

allowPluginNormalization?: boolean;

6465

},

6566

): string {

66-

const staticModelId = normalizeStaticProviderModelId(provider, model, {

67+

const providerModel = stripSelfProviderModelPrefix(provider, model);

68+

const staticModelId = normalizeStaticProviderModelId(provider, providerModel, {

6769

allowManifestNormalization: options?.allowManifestNormalization,

6870

manifestPlugins: options?.manifestPlugins,

6971

});