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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
I
InfoQ
宝玉的分享
宝玉的分享
G
Google Developers Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
B
Blog RSS Feed
博客园 - 聂微东
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏

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(image): resolve configured image models · openclaw/op...
zhanggpcsu · 2026-04-26 · via Recent Commits to openclaw:main

@@ -18,6 +18,8 @@ const hoisted = vi.hoisted(() => ({

1818

discoverModelsMock: vi.fn(),

1919

fetchMock: vi.fn(),

2020

registerProviderStreamForModelMock: vi.fn(),

21+

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

22+

resolveModelWithRegistryMock: vi.fn(),

2123

}));

2224

const {

2325

completeMock,

@@ -29,8 +31,16 @@ const {

2931

discoverModelsMock,

3032

fetchMock,

3133

registerProviderStreamForModelMock,

34+

prepareProviderDynamicModelMock,

35+

resolveModelWithRegistryMock,

3236

} = hoisted;

333738+

type ResolveModelWithRegistryTestParams = {

39+

modelRegistry: { find: (provider: string, modelId: string) => unknown };

40+

provider: string;

41+

modelId: string;

42+

};

43+3444

vi.mock("@mariozechner/pi-ai", async () => {

3545

const actual = await vi.importActual<typeof import("@mariozechner/pi-ai")>("@mariozechner/pi-ai");

3646

return {

@@ -63,6 +73,17 @@ vi.mock("../agents/pi-model-discovery-runtime.js", () => ({

6373

discoverModels: discoverModelsMock,

6474

}));

657576+

vi.mock("../plugins/provider-runtime.js", async () => ({

77+

...(await vi.importActual<typeof import("../plugins/provider-runtime.js")>(

78+

"../plugins/provider-runtime.js",

79+

)),

80+

prepareProviderDynamicModel: prepareProviderDynamicModelMock,

81+

}));

82+83+

vi.mock("../agents/pi-embedded-runner/model.js", () => ({

84+

resolveModelWithRegistry: resolveModelWithRegistryMock,

85+

}));

86+6687

const { describeImageWithModel } = await import("./image.js");

67886889

describe("describeImageWithModel", () => {

@@ -93,6 +114,12 @@ describe("describeImageWithModel", () => {

93114

baseUrl: "https://api.minimax.io/anthropic",

94115

})),

95116

});

117+

resolveModelWithRegistryMock.mockImplementation(

118+

// Delegate to modelRegistry.find so tests that override discoverModelsMock

119+

// automatically get the right model through resolveModelWithRegistry.

120+

({ modelRegistry, provider, modelId }: ResolveModelWithRegistryTestParams) =>

121+

modelRegistry.find(provider, modelId),

122+

);

96123

});

9712498125

it("routes minimax-portal image models through the MiniMax VLM endpoint", async () => {

@@ -188,6 +215,84 @@ describe("describeImageWithModel", () => {

188215

expect(fetchMock).not.toHaveBeenCalled();

189216

});

190217218+

it("resolves configured image models when discovery has not registered the provider", async () => {

219+

const registryFind = vi.fn(() => null);

220+

discoverModelsMock.mockReturnValue({ find: registryFind });

221+

resolveModelWithRegistryMock.mockImplementationOnce(

222+

({ provider, modelId }: ResolveModelWithRegistryTestParams) => ({

223+

provider,

224+

id: modelId,

225+

api: "anthropic-messages",

226+

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

227+

baseUrl: "http://127.0.0.1:1234",

228+

}),

229+

);

230+

completeMock.mockResolvedValue({

231+

role: "assistant",

232+

api: "anthropic-messages",

233+

provider: "lmstudio",

234+

model: "google/gemma-4-e2b",

235+

stopReason: "stop",

236+

timestamp: Date.now(),

237+

content: [{ type: "text", text: "local vision ok" }],

238+

});

239+240+

const result = await describeImageWithModel({

241+

cfg: {

242+

models: {

243+

providers: {

244+

lmstudio: {

245+

api: "anthropic-messages",

246+

baseUrl: "http://127.0.0.1:1234",

247+

models: [

248+

{

249+

id: "google/gemma-4-e2b",

250+

name: "google/gemma-4-e2b",

251+

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

252+

reasoning: false,

253+

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

254+

contextWindow: 131_072,

255+

maxTokens: 4096,

256+

},

257+

],

258+

},

259+

},

260+

},

261+

},

262+

agentDir: "/tmp/openclaw-agent",

263+

provider: "lmstudio",

264+

model: "google/gemma-4-e2b",

265+

buffer: Buffer.from("png-bytes"),

266+

fileName: "image.png",

267+

mime: "image/png",

268+

prompt: "Describe the image.",

269+

timeoutMs: 1000,

270+

});

271+272+

expect(result).toEqual({

273+

text: "local vision ok",

274+

model: "google/gemma-4-e2b",

275+

});

276+

expect(registryFind).not.toHaveBeenCalled();

277+

expect(resolveModelWithRegistryMock).toHaveBeenCalledWith(

278+

expect.objectContaining({

279+

provider: "lmstudio",

280+

modelId: "google/gemma-4-e2b",

281+

cfg: expect.objectContaining({

282+

models: expect.objectContaining({

283+

providers: expect.objectContaining({

284+

lmstudio: expect.objectContaining({

285+

baseUrl: "http://127.0.0.1:1234",

286+

}),

287+

}),

288+

}),

289+

}),

290+

}),

291+

);

292+

expect(prepareProviderDynamicModelMock).not.toHaveBeenCalled();

293+

expect(completeMock).toHaveBeenCalledOnce();

294+

});

295+191296

it("passes image prompt as system instructions for codex image requests", async () => {

192297

discoverModelsMock.mockReturnValue({

193298

find: vi.fn(() => ({