UNPKG

@hyperbrowser/agent

Version:

Hyperbrowsers Web Agent

8 lines (7 loc) 324 B
import { z } from "zod"; import { AgentActionDefinition } from "../../types"; export declare const ThinkingAction: z.ZodObject<{ plan: z.ZodNonOptional<z.ZodString>; }, z.core.$strip>; export type ThinkingActionType = z.infer<typeof ThinkingAction>; export declare const ThinkingActionDefinition: AgentActionDefinition;