eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
30 lines (29 loc) • 1.1 kB
TypeScript
import { z } from "#compiled/zod/index.js";
import { type ToolDefinition } from "#tools/definition.js";
/**
* Input schema for the provided `bash` tool.
*/
export declare const BASH_INPUT_SCHEMA: z.ZodObject<{
command: z.ZodString;
}, z.core.$strict>;
/**
* Output schema for the provided `bash` tool.
*/
export declare const BASH_OUTPUT_SCHEMA: z.ZodObject<{
exitCode: z.ZodNumber;
stderr: z.ZodString;
stdout: z.ZodString;
truncated: z.ZodBoolean;
}, z.core.$strict>;
export type BashToolInput = z.infer<typeof BASH_INPUT_SCHEMA>;
export type BashToolOutput = z.infer<typeof BASH_OUTPUT_SCHEMA>;
/**
* Framework-owned executors stay statically imported so hosted server bundles
* can trace and rewrite them into deployable output chunks.
*
* These modules are only used by the Nitro-hosted runtime path. Their deeper
* sandbox dependencies remain lazily loaded inside the execution layer, so the
* top-level import here does not force those backends to initialize eagerly.
*/
export declare const bash: ToolDefinition<BashToolInput, BashToolOutput>;
export default bash;