fix: drop removed minimax lightning model

This commit is contained in:
Peter Steinberger
2026-03-08 04:06:05 +00:00
parent 21df014d56
commit a035a3ce48
8 changed files with 56 additions and 19 deletions

View File

@@ -0,0 +1,49 @@
import { mkdtempSync } from "node:fs";
import { writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { describe, expect, it } from "vitest";
import { resolveImplicitProviders } from "./models-config.providers.js";
describe("minimax provider catalog", () => {
it("does not advertise the removed lightning model for api-key or oauth providers", async () => {
const agentDir = mkdtempSync(join(tmpdir(), "openclaw-test-"));
await writeFile(
join(agentDir, "auth-profiles.json"),
JSON.stringify(
{
version: 1,
profiles: {
"minimax:default": {
type: "api_key",
provider: "minimax",
key: "sk-minimax-test", // pragma: allowlist secret
},
"minimax-portal:default": {
type: "oauth",
provider: "minimax-portal",
access: "access-token",
refresh: "refresh-token",
expires: Date.now() + 60_000,
},
},
},
null,
2,
),
"utf8",
);
const providers = await resolveImplicitProviders({ agentDir });
expect(providers?.minimax?.models?.map((model) => model.id)).toEqual([
"MiniMax-VL-01",
"MiniMax-M2.5",
"MiniMax-M2.5-highspeed",
]);
expect(providers?.["minimax-portal"]?.models?.map((model) => model.id)).toEqual([
"MiniMax-VL-01",
"MiniMax-M2.5",
"MiniMax-M2.5-highspeed",
]);
});
});

View File

@@ -765,11 +765,6 @@ function buildMinimaxProvider(): ProviderConfig {
name: "MiniMax M2.5 Highspeed",
reasoning: true,
}),
buildMinimaxTextModel({
id: "MiniMax-M2.5-Lightning",
name: "MiniMax M2.5 Lightning",
reasoning: true,
}),
],
};
}
@@ -796,11 +791,6 @@ function buildMinimaxPortalProvider(): ProviderConfig {
name: "MiniMax M2.5 Highspeed",
reasoning: true,
}),
buildMinimaxTextModel({
id: "MiniMax-M2.5-Lightning",
name: "MiniMax M2.5 Lightning",
reasoning: true,
}),
],
};
}

View File

@@ -123,7 +123,7 @@ describe("directive behavior", () => {
workspace: path.join(home, "openclaw"),
models: {
"minimax/MiniMax-M2.5": {},
"minimax/MiniMax-M2.5-Lightning": {},
"minimax/MiniMax-M2.5-highspeed": {},
"lmstudio/minimax-m2.5-gs32": {},
},
},
@@ -157,7 +157,7 @@ describe("directive behavior", () => {
workspace: path.join(home, "openclaw"),
models: {
"minimax/MiniMax-M2.5": {},
"minimax/MiniMax-M2.5-Lightning": {},
"minimax/MiniMax-M2.5-highspeed": {},
},
},
},
@@ -170,7 +170,7 @@ describe("directive behavior", () => {
api: "anthropic-messages",
models: [
makeModelDefinition("MiniMax-M2.5", "MiniMax M2.5"),
makeModelDefinition("MiniMax-M2.5-Lightning", "MiniMax M2.5 Lightning"),
makeModelDefinition("MiniMax-M2.5-highspeed", "MiniMax M2.5 Highspeed"),
],
},
},

View File

@@ -295,7 +295,7 @@ const BASE_AUTH_CHOICE_OPTIONS: ReadonlyArray<AuthChoiceOption> = [
{
value: "minimax-api-lightning",
label: "MiniMax M2.5 Highspeed",
hint: "Official fast tier (legacy: Lightning)",
hint: "Official fast tier",
},
{ value: "custom-api-key", label: "Custom Provider" },
];

View File

@@ -91,7 +91,6 @@ export const ZAI_DEFAULT_COST = {
const MINIMAX_MODEL_CATALOG = {
"MiniMax-M2.5": { name: "MiniMax M2.5", reasoning: true },
"MiniMax-M2.5-highspeed": { name: "MiniMax M2.5 Highspeed", reasoning: true },
"MiniMax-M2.5-Lightning": { name: "MiniMax M2.5 Lightning", reasoning: true },
} as const;
type MinimaxCatalogId = keyof typeof MINIMAX_MODEL_CATALOG;