From 285bfb3f936cc9b2dc003d385bc3ba4419fdc0d0 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Mon, 13 Apr 2026 16:50:10 +0100 Subject: [PATCH] perf(cron): narrow live switch error import --- src/cron/isolated-agent/run-execution.runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cron/isolated-agent/run-execution.runtime.ts b/src/cron/isolated-agent/run-execution.runtime.ts index 039fd107838..9ac32bcf393 100644 --- a/src/cron/isolated-agent/run-execution.runtime.ts +++ b/src/cron/isolated-agent/run-execution.runtime.ts @@ -1,6 +1,6 @@ export { resolveEffectiveModelFallbacks } from "../../agents/agent-scope.js"; export { resolveBootstrapWarningSignaturesSeen } from "../../agents/bootstrap-budget.js"; -export { LiveSessionModelSwitchError } from "../../agents/live-model-switch.js"; +export { LiveSessionModelSwitchError } from "../../agents/live-model-switch-error.js"; export { runWithModelFallback } from "../../agents/model-fallback.js"; export { isCliProvider } from "../../agents/model-selection.js"; export { normalizeVerboseLevel } from "../../auto-reply/thinking.js";