UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

12 lines 417 B
import { z } from 'zod/v4'; /** * This schema is intended to be used when no arguments are required for a tool call. */ export declare const NoArgsSchema: z.ZodObject<{}, z.core.$strip>; /** * This schema is intended to be the base for all tool calls invoked by a GPT. */ export declare const BaseGptArgsSchema: z.ZodObject<{ rationale: z.ZodString; }, z.core.$strip>; //# sourceMappingURL=ToolSchema.d.ts.map