test(live): drop off-only Fireworks Kimi from high-signal sweep

This commit is contained in:
Vincent Koc
2026-05-05 01:42:25 -07:00
parent 6410743e34
commit d862e90793
2 changed files with 17 additions and 2 deletions

View File

@@ -26,8 +26,6 @@ const HIGH_SIGNAL_LIVE_MODEL_PRIORITY = [
"openrouter/ai21/jamba-large-1.7",
"xai/grok-4.3",
"zai/glm-5.1",
"fireworks/accounts/fireworks/models/kimi-k2p6",
"fireworks/accounts/fireworks/routers/kimi-k2p5-turbo",
"fireworks/accounts/fireworks/models/glm-5",
"fireworks/accounts/fireworks/models/glm-5p1",
"minimax-portal/minimax-m2.7",

View File

@@ -592,6 +592,23 @@ describe("isHighSignalLiveModelRef", () => {
).toBe(false);
});
it("drops Fireworks Kimi routes from the default high-thinking live matrix", () => {
providerRuntimeMocks.resolveProviderModernModelRef.mockReturnValue(true);
expect(
isHighSignalLiveModelRef({
provider: "fireworks",
id: "accounts/fireworks/models/kimi-k2p6",
}),
).toBe(false);
expect(
isHighSignalLiveModelRef({
provider: "fireworks",
id: "accounts/fireworks/routers/kimi-k2p5-turbo",
}),
).toBe(false);
});
it("keeps only curated xAI routes in the default live matrix", () => {
providerRuntimeMocks.resolveProviderModernModelRef.mockReturnValue(true);