test(live): drop off-only Fireworks Kimi from high-signal sweep · openclaw/openclaw@d862e90
vincentkoc
·
2026-05-05
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -26,8 +26,6 @@ const HIGH_SIGNAL_LIVE_MODEL_PRIORITY = [
|
26 | 26 | "openrouter/ai21/jamba-large-1.7", |
27 | 27 | "xai/grok-4.3", |
28 | 28 | "zai/glm-5.1", |
29 | | -"fireworks/accounts/fireworks/models/kimi-k2p6", |
30 | | -"fireworks/accounts/fireworks/routers/kimi-k2p5-turbo", |
31 | 29 | "fireworks/accounts/fireworks/models/glm-5", |
32 | 30 | "fireworks/accounts/fireworks/models/glm-5p1", |
33 | 31 | "minimax-portal/minimax-m2.7", |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -592,6 +592,23 @@ describe("isHighSignalLiveModelRef", () => {
|
592 | 592 | ).toBe(false); |
593 | 593 | }); |
594 | 594 | |
| 595 | +it("drops Fireworks Kimi routes from the default high-thinking live matrix", () => { |
| 596 | +providerRuntimeMocks.resolveProviderModernModelRef.mockReturnValue(true); |
| 597 | + |
| 598 | +expect( |
| 599 | +isHighSignalLiveModelRef({ |
| 600 | +provider: "fireworks", |
| 601 | +id: "accounts/fireworks/models/kimi-k2p6", |
| 602 | +}), |
| 603 | +).toBe(false); |
| 604 | +expect( |
| 605 | +isHighSignalLiveModelRef({ |
| 606 | +provider: "fireworks", |
| 607 | +id: "accounts/fireworks/routers/kimi-k2p5-turbo", |
| 608 | +}), |
| 609 | +).toBe(false); |
| 610 | +}); |
| 611 | + |
595 | 612 | it("keeps only curated xAI routes in the default live matrix", () => { |
596 | 613 | providerRuntimeMocks.resolveProviderModernModelRef.mockReturnValue(true); |
597 | 614 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。