rename: fallback-handoff.ts → terminal-detection.ts

The file no longer contains any fallback/handoff logic after the Athena
NLP removal — only generic terminal-event helpers (isTerminalFinishValue,
isTerminalStepFinishPart). Name now matches content.
This commit is contained in:
ismeth
2026-02-20 19:26:04 +01:00
committed by YeonGyu-Kim
parent a6a9b83531
commit 0205601b6c
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { applyPendingSwitch, clearPendingSwitchRuntime } from "../../features/ag
import {
isTerminalFinishValue,
isTerminalStepFinishPart,
} from "./fallback-handoff"
} from "./terminal-detection"
function getSessionIDFromStatusEvent(input: { event: { properties?: Record<string, unknown> } }): string | undefined {
const props = input.event.properties as Record<string, unknown> | undefined