





















@@ -82,6 +82,8 @@ const GATEWAY_LIVE_STRIP_SCAFFOLDING_MODEL_KEYS = new Set([
8282"openai/gpt-5.4-pro",
8383]);
8484const GATEWAY_LIVE_EXEC_READ_NONCE_MISS_SKIP_MODEL_KEYS = new Set([
85+"fireworks/accounts/fireworks/models/glm-5",
86+"fireworks/accounts/fireworks/routers/kimi-k2p5-turbo",
8587"google/gemini-3.1-flash-lite-preview",
8688]);
8789const GATEWAY_LIVE_TOOL_NONCE_MISS_SKIP_MODEL_KEYS = new Set(["google/gemini-3-flash-preview"]);
@@ -494,6 +496,17 @@ describe("shouldSkipExecReadNonceMissForLiveModel", () => {
494496expect(shouldSkipExecReadNonceMissForLiveModel("google/gemini-3.1-flash-lite")).toBe(true);
495497expect(shouldSkipExecReadNonceMissForLiveModel("google/gemini-3.1-flash-preview")).toBe(false);
496498});
499+500+it("matches hosted Fireworks models that execute but miss readback nonces", () => {
501+expect(
502+shouldSkipExecReadNonceMissForLiveModel("fireworks/accounts/fireworks/models/glm-5"),
503+).toBe(true);
504+expect(
505+shouldSkipExecReadNonceMissForLiveModel(
506+"fireworks/accounts/fireworks/routers/kimi-k2p5-turbo",
507+),
508+).toBe(true);
509+});
497510});
498511499512describe("resolveGatewayLiveModelTimeoutMs", () => {
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。