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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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(lmstudio): canonicalize variant model keys (#95401) ·...
MonkeyLeeT · 2026-06-23 · via Recent Commits to openclaw:main

@@ -66,19 +66,25 @@ describe("lmstudio-models", () => {

6666

};

6767

};

6868

const createModelLoadFetchMock = (params?: {

69+

key?: string;

70+

variants?: unknown;

71+

selectedVariant?: unknown;

6972

loadedContextLength?: number;

7073

maxContextLength?: number;

7174

}) =>

7275

vi.fn(async (url: string | URL, init?: RequestInit) => {

76+

const key = params?.key ?? "qwen3-8b-instruct";

7377

if (String(url).endsWith("/api/v1/models")) {

7478

return {

7579

ok: true,

7680

json: async () => ({

7781

models: [

7882

{

7983

type: "llm",

80-

key: "qwen3-8b-instruct",

84+

key,

8185

max_context_length: params?.maxContextLength,

86+

variants: params?.variants,

87+

selected_variant: params?.selectedVariant,

8288

loaded_instances: params?.loadedContextLength

8389

? [{ id: "inst-1", config: { context_length: params.loadedContextLength } }]

8490

: [],

@@ -110,6 +116,18 @@ describe("lmstudio-models", () => {

110116

const loadBody = parseJsonRequestBody(loadInit) as { context_length: number };

111117

expect(loadBody.context_length).toBe(contextLength);

112118

};

119+

const expectLoadModelKey = (

120+

fetchMock: ReturnType<typeof createModelLoadFetchMock>,

121+

modelKey: string,

122+

) => {

123+

const loadCall = findModelLoadCall(fetchMock);

124+

if (!loadCall) {

125+

throw new Error("expected LM Studio model load request");

126+

}

127+

const loadInit = loadCall[1] as RequestInit;

128+

const loadBody = parseJsonRequestBody(loadInit) as { model: string };

129+

expect(loadBody.model).toBe(modelKey);

130+

};

113131114132

afterEach(() => {

115133

fetchWithSsrFGuardMock.mockReset();

@@ -451,7 +469,7 @@ describe("lmstudio-models", () => {

451469

baseUrl: "http://localhost:1234/v1",

452470

modelKey: "qwen3-8b-instruct",

453471

}),

454-

).resolves.toBeUndefined();

472+

).resolves.toBe("qwen3-8b-instruct");

455473456474

expect(fetchMock).toHaveBeenCalledTimes(1);

457475

const calledUrls = fetchMock.mock.calls.map((call) => String(call[0]));

@@ -471,12 +489,89 @@ describe("lmstudio-models", () => {

471489

modelKey: "qwen3-8b-instruct",

472490

requestedContextLength: 8192,

473491

}),

474-

).resolves.toBeUndefined();

492+

).resolves.toBe("qwen3-8b-instruct");

475493476494

expect(fetchMock).toHaveBeenCalledTimes(2);

477495

expectLoadContextLength(fetchMock, 8192);

478496

});

479497498+

it("loads the canonical model key when the requested key is an advertised variant", async () => {

499+

const canonicalKey = "gemma-4-e4b-it-ultra-uncensored-heretic";

500+

const variantKey = `${canonicalKey}@q4_k_m`;

501+

const fetchMock = createModelLoadFetchMock({

502+

key: canonicalKey,

503+

variants: [variantKey],

504+

selectedVariant: variantKey,

505+

});

506+

vi.stubGlobal("fetch", asFetch(fetchMock));

507+508+

await expect(

509+

ensureLmstudioModelLoaded({

510+

baseUrl: "http://localhost:1234/v1",

511+

modelKey: variantKey,

512+

}),

513+

).resolves.toBe(canonicalKey);

514+515+

expect(fetchMock).toHaveBeenCalledTimes(2);

516+

expectLoadModelKey(fetchMock, canonicalKey);

517+

});

518+519+

it("keeps the canonical model key on load failures after variant discovery", async () => {

520+

const canonicalKey = "gemma-4-e4b-it-ultra-uncensored-heretic";

521+

const variantKey = `${canonicalKey}@q4_k_m`;

522+

const fetchMock = vi.fn(async (url: string | URL) => {

523+

if (String(url).endsWith("/api/v1/models")) {

524+

return {

525+

ok: true,

526+

json: async () => ({

527+

models: [

528+

{

529+

type: "llm",

530+

key: canonicalKey,

531+

variants: [variantKey],

532+

selected_variant: variantKey,

533+

loaded_instances: [],

534+

},

535+

],

536+

}),

537+

};

538+

}

539+

if (String(url).endsWith("/api/v1/models/load")) {

540+

return new Response("load failed", { status: 503 });

541+

}

542+

throw new Error(`Unexpected fetch URL: ${String(url)}`);

543+

});

544+

vi.stubGlobal("fetch", asFetch(fetchMock));

545+546+

const error = await ensureLmstudioModelLoaded({

547+

baseUrl: "http://localhost:1234/v1",

548+

modelKey: variantKey,

549+

}).catch((caught: unknown) => caught);

550+551+

expect(error).toBeInstanceOf(Error);

552+

expect(error).toMatchObject({ resolvedModelKey: canonicalKey });

553+

});

554+555+

it("preserves a suffixed key when LM Studio advertises it as the model key", async () => {

556+

const suffixedKey = "local/special-model@q4_k_m";

557+

const fetchMock = createModelLoadFetchMock({

558+

key: suffixedKey,

559+

variants: ["local/special-model@q8_0"],

560+

selectedVariant: "local/special-model@q8_0",

561+

});

562+

vi.stubGlobal("fetch", asFetch(fetchMock));

563+564+

await expect(

565+

ensureLmstudioModelLoaded({

566+

baseUrl: "http://localhost:1234/v1",

567+

modelKey: suffixedKey,

568+

}),

569+

).resolves.toBe(suffixedKey);

570+571+

expect(fetchMock).toHaveBeenCalledTimes(2);

572+

expectLoadModelKey(fetchMock, suffixedKey);

573+

});

574+480575

it("reports malformed model load JSON with an owned error", async () => {

481576

const fetchMock = vi.fn(async (url: string | URL) => {

482577

if (String(url).endsWith("/api/v1/models")) {

@@ -552,7 +647,7 @@ describe("lmstudio-models", () => {

552647

baseUrl: "http://localhost:1234/v1",

553648

modelKey: "qwen3-8b-instruct",

554649

}),

555-

).resolves.toBeUndefined();

650+

).resolves.toBe("qwen3-8b-instruct");

556651557652

expect(fetchMock).toHaveBeenCalledTimes(2);

558653

expectLoadContextLength(fetchMock, 32768);

@@ -572,7 +667,7 @@ describe("lmstudio-models", () => {

572667

},

573668

modelKey: " qwen3-8b-instruct ",

574669

}),

575-

).resolves.toBeUndefined();

670+

).resolves.toBe("qwen3-8b-instruct");

576671577672

expect(fetchMock).toHaveBeenCalledTimes(2);

578673

const loadCall = findModelLoadCall(fetchMock);

@@ -608,7 +703,7 @@ describe("lmstudio-models", () => {

608703

modelKey: "qwen3-8b-instruct",

609704

requestedContextLength: 8192,

610705

}),

611-

).resolves.toBeUndefined();

706+

).resolves.toBe("qwen3-8b-instruct");

612707613708

expectLoadContextLength(fetchMock, 8192);

614709

});

@@ -626,7 +721,7 @@ describe("lmstudio-models", () => {

626721

modelKey: "qwen3-8b-instruct",

627722

requestedContextLength: 8192.5,

628723

}),

629-

).resolves.toBeUndefined();

724+

).resolves.toBe("qwen3-8b-instruct");

630725631726

expectLoadContextLength(fetchMock, LMSTUDIO_DEFAULT_LOAD_CONTEXT_LENGTH);

632727

});