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

推荐订阅源

博客园 - Franky
D
Docker
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
爱范儿
爱范儿
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
Recent Announcements
Recent Announcements
U
Unit 42
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
量子位
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure 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(qwen): allow explicit qwen3.6-plus on Coding Plan (#7...
vincentkoc · 2026-04-28 · via Recent Commits to openclaw:main

@@ -2,28 +2,104 @@ import { beforeEach, describe, expect, it, vi } from "vitest";

22

import { discoverAuthStorage, discoverModels } from "../pi-model-discovery.js";

33

import { createProviderRuntimeTestMock } from "./model.provider-runtime.test-support.js";

445-

vi.mock("../model-suppression.js", () => ({

6-

shouldSuppressBuiltInModel: ({ provider, id }: { provider?: string; id?: string }) =>

7-

((provider === "openai" ||

8-

provider === "azure-openai-responses" ||

9-

provider === "openai-codex") &&

10-

id?.trim().toLowerCase() === "gpt-5.3-codex-spark") ||

11-

(provider === "openai-codex" && id?.trim().toLowerCase() === "gpt-5.4-mini"),

12-

buildSuppressedBuiltInModelError: ({ provider, id }: { provider?: string; id?: string }) => {

13-

if (provider === "openai-codex" && id?.trim().toLowerCase() === "gpt-5.4-mini") {

14-

return "Unknown model: openai-codex/gpt-5.4-mini. gpt-5.4-mini is not supported by the OpenAI Codex OAuth route. Use openai/gpt-5.4-mini with an OpenAI API key or openai-codex/gpt-5.5 with Codex OAuth.";

5+

vi.mock("../model-suppression.js", () => {

6+

// Mirrors the canonical manifest-driven suppression in

7+

// extensions/qwen/openclaw.plugin.json and src/plugins/manifest-model-suppression.ts.

8+

function isQwenCodingPlanBaseUrl(value: string | undefined): boolean {

9+

const trimmed = value?.trim();

10+

if (!trimmed) {

11+

return false;

1512

}

16-

if (

17-

(provider !== "openai" &&

18-

provider !== "azure-openai-responses" &&

19-

provider !== "openai-codex") ||

20-

id?.trim().toLowerCase() !== "gpt-5.3-codex-spark"

21-

) {

13+

try {

14+

const hostname = new URL(trimmed).hostname.toLowerCase().replace(/\.+$/, "");

15+

return (

16+

hostname === "coding.dashscope.aliyuncs.com" ||

17+

hostname === "coding-intl.dashscope.aliyuncs.com"

18+

);

19+

} catch {

20+

return false;

21+

}

22+

}

23+24+

function resolveConfiguredQwenBaseUrl(config: unknown): string | undefined {

25+

const providers = (config as { models?: { providers?: Record<string, { baseUrl?: string }> } })

26+

?.models?.providers;

27+

if (!providers) {

2228

return undefined;

2329

}

24-

return `Unknown model: ${provider}/gpt-5.3-codex-spark. gpt-5.3-codex-spark is no longer exposed by the OpenAI or Codex catalogs. Use openai/gpt-5.5.`;

25-

},

26-

}));

30+

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

31+

const normalizedProvider = provider.trim().toLowerCase();

32+

if (normalizedProvider !== "qwen" && normalizedProvider !== "modelstudio") {

33+

continue;

34+

}

35+

const baseUrl = entry?.baseUrl?.trim();

36+

if (baseUrl) {

37+

return baseUrl;

38+

}

39+

}

40+

return undefined;

41+

}

42+43+

return {

44+

shouldSuppressBuiltInModel: ({

45+

provider,

46+

id,

47+

baseUrl,

48+

config,

49+

}: {

50+

provider?: string;

51+

id?: string;

52+

baseUrl?: string;

53+

config?: unknown;

54+

}) => {

55+

if (

56+

(provider === "openai" ||

57+

provider === "azure-openai-responses" ||

58+

provider === "openai-codex") &&

59+

id?.trim().toLowerCase() === "gpt-5.3-codex-spark"

60+

) {

61+

return true;

62+

}

63+

if (provider === "openai-codex" && id?.trim().toLowerCase() === "gpt-5.4-mini") {

64+

return true;

65+

}

66+

return (

67+

(provider === "qwen" || provider === "modelstudio") &&

68+

id?.trim().toLowerCase() === "qwen3.6-plus" &&

69+

isQwenCodingPlanBaseUrl(baseUrl ?? resolveConfiguredQwenBaseUrl(config))

70+

);

71+

},

72+

buildSuppressedBuiltInModelError: ({

73+

provider,

74+

id,

75+

config,

76+

}: {

77+

provider?: string;

78+

id?: string;

79+

config?: unknown;

80+

}) => {

81+

if (

82+

(provider === "qwen" || provider === "modelstudio") &&

83+

id?.trim().toLowerCase() === "qwen3.6-plus" &&

84+

isQwenCodingPlanBaseUrl(resolveConfiguredQwenBaseUrl(config))

85+

) {

86+

return "Unknown model: qwen/qwen3.6-plus. qwen3.6-plus is not supported on the Qwen Coding Plan endpoint; use a Standard pay-as-you-go Qwen endpoint or choose qwen/qwen3.5-plus.";

87+

}

88+

if (provider === "openai-codex" && id?.trim().toLowerCase() === "gpt-5.4-mini") {

89+

return "Unknown model: openai-codex/gpt-5.4-mini. gpt-5.4-mini is not supported by the OpenAI Codex OAuth route. Use openai/gpt-5.4-mini with an OpenAI API key or openai-codex/gpt-5.5 with Codex OAuth.";

90+

}

91+

if (

92+

(provider === "openai" ||

93+

provider === "azure-openai-responses" ||

94+

provider === "openai-codex") &&

95+

id?.trim().toLowerCase() === "gpt-5.3-codex-spark"

96+

) {

97+

return `Unknown model: ${provider}/gpt-5.3-codex-spark. gpt-5.3-codex-spark is no longer exposed by the OpenAI or Codex catalogs. Use openai/gpt-5.5.`;

98+

}

99+

return undefined;

100+

},

101+

};

102+

});

2710328104

vi.mock("../pi-model-discovery.js", () => ({

29105

discoverAuthStorage: vi.fn(() => ({ mocked: true })),

@@ -222,6 +298,63 @@ describe("resolveModel", () => {

222298

expect(getModelProviderRequestTransport(result.model ?? {})).toBeUndefined();

223299

});

224300301+

it("resolves explicitly configured qwen3.6-plus before Coding Plan built-in suppression", () => {

302+

const cfg = {

303+

models: {

304+

providers: {

305+

qwen: {

306+

baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",

307+

api: "openai-completions",

308+

models: [

309+

{

310+

id: "qwen3.6-plus",

311+

name: "qwen3.6-plus",

312+

input: ["text", "image"],

313+

reasoning: false,

314+

contextWindow: 1_000_000,

315+

maxTokens: 65_536,

316+

},

317+

],

318+

},

319+

},

320+

},

321+

} as unknown as OpenClawConfig;

322+323+

const result = resolveModelForTest("qwen", "qwen3.6-plus", "/tmp/agent", cfg);

324+325+

expect(result.error).toBeUndefined();

326+

expect(result.model).toMatchObject({

327+

provider: "qwen",

328+

id: "qwen3.6-plus",

329+

api: "openai-completions",

330+

baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",

331+

input: ["text", "image"],

332+

contextWindow: 1_000_000,

333+

maxTokens: 65_536,

334+

});

335+

});

336+337+

it("keeps unconfigured qwen3.6-plus suppressed on Coding Plan endpoints", () => {

338+

const cfg = {

339+

models: {

340+

providers: {

341+

qwen: {

342+

baseUrl: "https://coding-intl.dashscope.aliyuncs.com/v1",

343+

api: "openai-completions",

344+

models: [],

345+

},

346+

},

347+

},

348+

} as unknown as OpenClawConfig;

349+350+

const result = resolveModelForTest("qwen", "qwen3.6-plus", "/tmp/agent", cfg);

351+352+

expect(result.model).toBeUndefined();

353+

expect(result.error).toBe(

354+

"Unknown model: qwen/qwen3.6-plus. qwen3.6-plus is not supported on the Qwen Coding Plan endpoint; use a Standard pay-as-you-go Qwen endpoint or choose qwen/qwen3.5-plus.",

355+

);

356+

});

357+225358

it("normalizes Google fallback baseUrls for custom providers", () => {

226359

const cfg = {

227360

models: {