eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
27 lines (26 loc) • 865 B
TypeScript
import { z } from "#compiled/zod/index.js";
import { type ToolDefinition } from "#tools/definition.js";
/**
* Input schema for the provided `glob` tool.
*/
export declare const GLOB_INPUT_SCHEMA: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
path: z.ZodOptional<z.ZodString>;
pattern: z.ZodString;
}, z.core.$strict>;
/**
* Output schema for the provided `glob` tool.
*/
export declare const GLOB_OUTPUT_SCHEMA: z.ZodObject<{
content: z.ZodString;
count: z.ZodNumber;
path: z.ZodString;
truncated: z.ZodBoolean;
}, z.core.$strict>;
export type GlobToolInput = z.infer<typeof GLOB_INPUT_SCHEMA>;
export type GlobToolOutput = z.infer<typeof GLOB_OUTPUT_SCHEMA>;
/**
* Framework-owned executor that delegates to the default sandbox.
*/
export declare const glob: ToolDefinition<GlobToolInput, GlobToolOutput>;
export default glob;