UNPKG

@hyperbrowser/agent

Version:

Hyperbrowsers Web Agent

9 lines (8 loc) 348 B
import { z } from "zod"; import { AgentActionDefinition } from "../../types"; export declare const CompleteAction: z.ZodObject<{ success: z.ZodBoolean; text: z.ZodNullable<z.ZodString>; }, z.core.$strip>; export type CompleteActionType = z.infer<typeof CompleteAction>; export declare const CompleteActionDefinition: AgentActionDefinition;