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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
有赞技术团队
有赞技术团队
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
罗磊的独立博客
T
Tailwind CSS Blog
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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(github-copilot): bound model discovery and embeddings...
hugenshen · 2026-06-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -75,13 +75,16 @@ function mockDiscoveryResponse(spec: {

7575

json?: unknown;

7676

text?: string;

7777

}) {

78+

const status = spec.status ?? (spec.ok ? 200 : 500);

79+

const response =

80+

spec.json !== undefined

81+

? new Response(JSON.stringify(spec.json), {

82+

status,

83+

headers: { "Content-Type": "application/json" },

84+

})

85+

: new Response(spec.text ?? "", { status });

7886

fetchWithSsrFGuardMock.mockImplementationOnce(async () => ({

79-

response: {

80-

ok: spec.ok,

81-

status: spec.status ?? (spec.ok ? 200 : 500),

82-

json: async () => spec.json,

83-

text: async () => spec.text ?? "",

84-

},

87+

response,

8588

release: vi.fn(async () => {}),

8689

}));

8790

}

@@ -228,20 +231,16 @@ describe("githubCopilotMemoryEmbeddingProviderAdapter", () => {

228231
229232

it("wraps invalid discovery JSON as a setup error", async () => {

230233

fetchWithSsrFGuardMock.mockImplementationOnce(async () => ({

231-

response: {

232-

ok: true,

234+

response: new Response("not-valid-json{{{", {

233235

status: 200,

234-

json: async () => {

235-

throw new SyntaxError("bad json");

236-

},

237-

text: async () => "",

238-

},

236+

headers: { "Content-Type": "application/json" },

237+

}),

239238

release: vi.fn(async () => {}),

240239

}));

241240
242241

await expect(

243242

githubCopilotMemoryEmbeddingProviderAdapter.create(defaultCreateOptions()),

244-

).rejects.toThrow("GitHub Copilot model discovery returned invalid JSON");

243+

).rejects.toThrow("github-copilot.model-discovery: malformed JSON response");

245244

});

246245
247246

it("bounds model discovery error bodies", async () => {

@@ -360,7 +359,7 @@ describe("githubCopilotMemoryEmbeddingProviderAdapter", () => {

360359

).toBe(true);

361360

expect(

362361

shouldContinueAutoSelection(

363-

new Error("GitHub Copilot model discovery returned invalid JSON"),

362+

new Error("github-copilot.model-discovery: malformed JSON response"),

364363

),

365364

).toBe(true);

366365

expect(shouldContinueAutoSelection(new Error("Network timeout"))).toBe(false);

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,10 @@ import {

77

type MemoryEmbeddingProviderAdapter,

88

} from "openclaw/plugin-sdk/memory-core-host-engine-embeddings";

99

import { buildCopilotIdeHeaders } from "openclaw/plugin-sdk/provider-auth";

10-

import { readResponseTextLimited } from "openclaw/plugin-sdk/provider-http";

10+

import {

11+

readProviderJsonResponse,

12+

readResponseTextLimited,

13+

} from "openclaw/plugin-sdk/provider-http";

1114

import { resolveConfiguredSecretInputString } from "openclaw/plugin-sdk/secret-input-runtime";

1215

import { fetchWithSsrFGuard, type SsrFPolicy } from "openclaw/plugin-sdk/ssrf-runtime";

1316

import { resolveFirstGithubToken } from "./auth.js";

@@ -29,6 +32,7 @@ const COPILOT_HEADERS_STATIC: Record<string, string> = {

2932

...buildCopilotIdeHeaders(),

3033

};

3134

const COPILOT_ERROR_BODY_LIMIT_BYTES = 8 * 1024;

35+

const COPILOT_EMBEDDINGS_RESPONSE_MAX_BYTES = 64 * 1024 * 1024;

3236
3337

function buildSsrfPolicy(baseUrl: string): SsrFPolicy | undefined {

3438

try {

@@ -70,6 +74,7 @@ function isCopilotSetupError(err: unknown): boolean {

7074

err.message.includes("Copilot token response") ||

7175

err.message.includes("No embedding models available") ||

7276

err.message.includes("GitHub Copilot model discovery") ||

77+

err.message.includes("github-copilot.model-discovery") ||

7378

err.message.includes("GitHub Copilot embedding model") ||

7479

err.message.includes("Unexpected response from GitHub Copilot token endpoint")

7580

);

@@ -100,12 +105,7 @@ async function discoverEmbeddingModels(params: {

100105

const detail = await readResponseTextLimited(response, COPILOT_ERROR_BODY_LIMIT_BYTES);

101106

throw new Error(`GitHub Copilot model discovery HTTP ${response.status}: ${detail}`);

102107

}

103-

let payload: unknown;

104-

try {

105-

payload = await response.json();

106-

} catch {

107-

throw new Error("GitHub Copilot model discovery returned invalid JSON");

108-

}

108+

const payload = await readProviderJsonResponse(response, "github-copilot.model-discovery");

109109

const allModels = Array.isArray((payload as { data?: unknown })?.data)

110110

? ((payload as { data: CopilotModelEntry[] }).data ?? [])

111111

: [];

@@ -246,12 +246,9 @@ async function createGitHubCopilotEmbeddingProvider(

246246

throw new Error(`GitHub Copilot embeddings HTTP ${response.status}: ${detail}`);

247247

}

248248
249-

let payload: unknown;

250-

try {

251-

payload = await response.json();

252-

} catch {

253-

throw new Error("GitHub Copilot embeddings returned invalid JSON");

254-

}

249+

const payload = await readProviderJsonResponse(response, "github-copilot.embeddings", {

250+

maxBytes: COPILOT_EMBEDDINGS_RESPONSE_MAX_BYTES,

251+

});

255252

return parseGitHubCopilotEmbeddingPayload(payload, input.length);

256253

},

257254

});