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

推荐订阅源

博客园_首页
B
Blog
V
V2EX
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 聂微东
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
J
Java Code Geeks
H
Help Net Security
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
D
Docker
L
LangChain Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
WordPress大学
WordPress大学
V
Visual Studio 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
refactor(providers): drop unused model defaults helpers ·...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
11

// Github Copilot tests cover models plugin behavior.

22

import { createProviderUsageFetch, makeResponse } from "openclaw/plugin-sdk/test-env";

33

import { beforeEach, describe, expect, it, vi } from "vitest";

4-

import { buildCopilotModelDefinition, getDefaultCopilotModelIds } from "./models-defaults.js";

54

import { deriveCopilotApiBaseUrlFromToken, resolveCopilotApiToken } from "./token.js";

65

import { fetchCopilotUsage } from "./usage.js";

76

@@ -54,108 +53,6 @@ function requireResolvedModel(ctx: ProviderResolveDynamicModelContext) {

5453

return result;

5554

}

565557-

describe("github-copilot model defaults", () => {

58-

describe("getDefaultCopilotModelIds", () => {

59-

it("includes claude-opus-4.7", () => {

60-

expect(getDefaultCopilotModelIds()).toContain("claude-opus-4.7");

61-

expect(getDefaultCopilotModelIds()).toContain("claude-opus-4.6");

62-

});

63-64-

it("includes claude-opus-4.8", () => {

65-

expect(getDefaultCopilotModelIds()).toContain("claude-opus-4.8");

66-

});

67-68-

it("includes claude-sonnet-4.6", () => {

69-

expect(getDefaultCopilotModelIds()).toContain("claude-sonnet-4.6");

70-

});

71-72-

it("excludes retired and old Claude fallback rows", () => {

73-

expect(getDefaultCopilotModelIds()).not.toContain("claude-sonnet-4");

74-

expect(getDefaultCopilotModelIds()).not.toContain("claude-sonnet-4.5");

75-

expect(getDefaultCopilotModelIds()).not.toContain("claude-opus-4.5");

76-

expect(getDefaultCopilotModelIds()).not.toContain("claude-haiku-4.5");

77-

expect(getDefaultCopilotModelIds()).not.toContain("grok-code-fast-1");

78-

});

79-80-

it("returns a mutable copy", () => {

81-

const a = getDefaultCopilotModelIds();

82-

const b = getDefaultCopilotModelIds();

83-

expect(a).not.toBe(b);

84-

expect(a).toEqual(b);

85-

});

86-

});

87-88-

describe("buildCopilotModelDefinition", () => {

89-

it("builds a valid definition for claude-sonnet-4.6", () => {

90-

const def = buildCopilotModelDefinition("claude-sonnet-4.6");

91-

expect(def.id).toBe("claude-sonnet-4.6");

92-

expect(def.api).toBe("anthropic-messages");

93-

expect(def.compat).toBeUndefined();

94-

});

95-96-

it.each(["claude-haiku-4.5", "claude-sonnet-4-5"])(

97-

"disables eager tool streaming for Copilot Claude 4.5 model %s",

98-

(modelId) => {

99-

expect(buildCopilotModelDefinition(modelId).compat).toEqual({

100-

supportsEagerToolInputStreaming: false,

101-

});

102-

},

103-

);

104-105-

it("uses static metadata overrides for gpt-5.5 fallback rows", () => {

106-

const def = buildCopilotModelDefinition("gpt-5.5");

107-

expect(def).toEqual({

108-

id: "gpt-5.5",

109-

name: "GPT-5.5",

110-

api: "openai-responses",

111-

reasoning: true,

112-

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

113-

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

114-

contextWindow: 400_000,

115-

maxTokens: 128_000,

116-

});

117-

});

118-119-

it("uses static metadata overrides for Claude Opus 1M fallback rows", () => {

120-

const def = buildCopilotModelDefinition("claude-opus-4.7-1m-internal");

121-

expect(def).toEqual({

122-

id: "claude-opus-4.7-1m-internal",

123-

name: "Claude Opus 4.7 (1M context)",

124-

api: "anthropic-messages",

125-

reasoning: true,

126-

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

127-

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

128-

contextWindow: 1_000_000,

129-

maxTokens: 64_000,

130-

thinkingLevelMap: { xhigh: "xhigh", max: null },

131-

compat: { supportedReasoningEfforts: ["low", "medium", "high", "xhigh"] },

132-

});

133-

});

134-135-

it("trims whitespace from model id", () => {

136-

const def = buildCopilotModelDefinition(" gpt-4o ");

137-

expect(def.id).toBe("gpt-4o");

138-

expect(def.api).toBe("openai-responses");

139-

});

140-141-

it("routes Gemini models through Chat Completions with Copilot compat flags", () => {

142-

const def = buildCopilotModelDefinition("gemini-3.1-pro-preview");

143-

expect(def.api).toBe("openai-completions");

144-

expect(def.compat).toEqual({

145-

supportsStore: false,

146-

supportsDeveloperRole: false,

147-

supportsUsageInStreaming: false,

148-

maxTokensField: "max_tokens",

149-

});

150-

});

151-152-

it("throws on empty model id", () => {

153-

expect(() => buildCopilotModelDefinition("")).toThrow("Model id required");

154-

expect(() => buildCopilotModelDefinition(" ")).toThrow("Model id required");

155-

});

156-

});

157-

});

158-15956

describe("resolveCopilotForwardCompatModel", () => {

16057

it("returns undefined for empty modelId", () => {

16158

expect(resolveCopilotForwardCompatModel(createMockCtx(""))).toBeUndefined();