UNPKG

@mondaydotcomorg/atp-client

Version:
20 lines 719 B
import { z } from 'zod'; import type { AgentToolProtocolClient } from '../client.js'; import { type Tool } from './types.js'; declare const executeCodeInputSchema: z.ZodObject<{ code: z.ZodString; timeout: z.ZodOptional<z.ZodNumber>; maxMemory: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { code: string; timeout?: number | undefined; maxMemory?: number | undefined; }, { code: string; timeout?: number | undefined; maxMemory?: number | undefined; }>; type ExecuteCodeInput = z.infer<typeof executeCodeInputSchema>; export declare function createExecuteCodeTool(client: AgentToolProtocolClient): Tool<ExecuteCodeInput>; export {}; //# sourceMappingURL=execute-code.d.ts.map