eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 677 B
TypeScript
import { z } from "#compiled/zod/index.js";
export { executeSleepTool } from "#execution/tools/sleep-workflow.js";
export declare const SLEEP_TOOL_DESCRIPTION = "Wait for a specified amount of time before continuing. Use this when a process or condition needs time to change before it is useful to check its progress or status again.";
export declare const SLEEP_INPUT_SCHEMA: z.ZodObject<{
seconds: z.ZodNumber;
}, z.core.$strict>;
export declare const SLEEP_OUTPUT_SCHEMA: z.ZodObject<{
waitedSeconds: z.ZodNumber;
}, z.core.$strict>;
export type SleepToolInput = z.infer<typeof SLEEP_INPUT_SCHEMA>;
export type SleepToolOutput = z.infer<typeof SLEEP_OUTPUT_SCHEMA>;