feat(FN-3914): add durable heartbeat model fallback

Adds durable heartbeat model fallback logic to the engine's heartbeat subsystem (`agent-heartbeat.ts`, `agent-session-helpers.ts`, `pi.ts`), allowing heartbeats to gracefully use alternative AI models when the primary model is unavailable, with documentation updates to `agents.md` and `settings-refe

Fusion-Task-Id: FN-3914
This commit is contained in:
Fusion
2026-05-10 02:48:30 -07:00
committed by gsxdsm
parent adbc5f1c24
commit a1f4b53e21
9 changed files with 262 additions and 36 deletions

View File

@@ -1050,6 +1050,30 @@ describe("createFnAgent", () => {
expect(createAgentSessionMock).not.toHaveBeenCalled();
});
it("uses the configured fallback model when the primary model cannot be resolved", async () => {
findMock.mockImplementation((provider: string, modelId: string) => {
if (provider === "zai" && modelId === "glm-5.1") return undefined;
return { provider, id: modelId };
});
const { createFnAgent } = await import("../pi.js");
await createFnAgent({
cwd: "/tmp",
systemPrompt: "test",
tools: "readonly",
defaultProvider: "zai",
defaultModelId: "glm-5.1",
fallbackProvider: "openai-codex",
fallbackModelId: "gpt-5.4",
});
expect(createAgentSessionMock).toHaveBeenCalledTimes(1);
expect(createAgentSessionMock.mock.calls[0]?.[0]).toMatchObject({
model: { provider: "openai-codex", id: "gpt-5.4" },
});
});
it("throws when the configured fallback model cannot be resolved", async () => {
findMock.mockImplementation((provider: string, modelId: string) => (
provider === "openai-codex" && modelId === "missing-model" ? undefined : { provider, id: modelId }