@hyperbrowser/agent
Version:
Hyperbrowsers Web Agent
15 lines (14 loc) • 460 B
TypeScript
import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const CompleteAction: z.ZodObject<{
success: z.ZodBoolean;
text: z.ZodNullable<z.ZodString>;
}, "strip", z.ZodTypeAny, {
text: string | null;
success: boolean;
}, {
text: string | null;
success: boolean;
}>;
export type CompleteActionType = z.infer<typeof CompleteAction>;
export declare const CompleteActionDefinition: AgentActionDefinition;