eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 402 B
TypeScript
import { type DurableSessionState } from "#execution/durable-session-store.js";
/**
* Cancels every running delegated child recorded in the agent handle store
* and every workflow tool run the turn is waiting on.
*/
export declare function cancelDescendantTurnsStep(input: {
readonly serializedContext: Record<string, unknown>;
readonly sessionState: DurableSessionState;
}): Promise<void>;