From d862e9079342592446096e3c5992db6dc297bb46 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 5 May 2026 01:42:25 -0700 Subject: [PATCH] test(live): drop off-only Fireworks Kimi from high-signal sweep --- src/agents/live-model-filter.ts | 2 -- src/agents/model-compat.test.ts | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/agents/live-model-filter.ts b/src/agents/live-model-filter.ts index 1dfb1913836..244f709af5b 100644 --- a/src/agents/live-model-filter.ts +++ b/src/agents/live-model-filter.ts @@ -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", diff --git a/src/agents/model-compat.test.ts b/src/agents/model-compat.test.ts index a44c0151711..43b7d4671db 100644 --- a/src/agents/model-compat.test.ts +++ b/src/agents/model-compat.test.ts @@ -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);