eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 510 B
TypeScript
import { z } from "#compiled/zod/index.js";
/** Outcome of requesting cooperative turn cancellation. */
export type CancelTurnStatus = "accepted" | "no_active_turn";
/** Successful standard turn-cancellation response. */
export interface CancelTurnResponse {
readonly ok: true;
readonly sessionId: string;
readonly status: CancelTurnStatus;
}
/** Successful response returned by the standard turn-cancellation route. */
export declare const CancelTurnResponseSchema: z.ZodType<CancelTurnResponse>;