mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:30:42 +00:00
test(live): drop off-only Fireworks Kimi from high-signal sweep
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user