donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
11 lines • 420 B
TypeScript
import { z } from 'zod/v4';
/**
* A proposed (i.e. yet to be executed) tool call.
*/
export declare const ProposedToolCallSchema: z.ZodObject<{
name: z.ZodString;
parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
toolCallId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
}, z.core.$strip>;
export type ProposedToolCall = z.infer<typeof ProposedToolCallSchema>;
//# sourceMappingURL=ProposedToolCall.d.ts.map