eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines (14 loc) • 565 B
TypeScript
import { z } from "#compiled/zod/index.js";
/** Outcome of queueing a manual context clear. */
export type ClearStatus = "accepted" | "no_active_session";
/** Successful response returned by the standard session-clear route. */
export type ClearResponse = {
readonly ok: true;
readonly sessionId: string;
readonly status: "accepted";
} | {
readonly ok: true;
readonly status: "no_active_session";
};
/** Validates successful responses from the standard session-clear route. */
export declare const ClearResponseSchema: z.ZodType<ClearResponse>;