@hyperbrowser/agent
Version:
Hyperbrowsers Web Agent
15 lines (14 loc) • 411 B
TypeScript
import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const PDFAction: z.ZodObject<{
pdfUrl: z.ZodString;
prompt: z.ZodString;
}, "strip", z.ZodTypeAny, {
pdfUrl: string;
prompt: string;
}, {
pdfUrl: string;
prompt: string;
}>;
export type PDFActionType = z.infer<typeof PDFAction>;
export declare const PDFActionDefinition: AgentActionDefinition;