@hyperbrowser/agent
Version:
Hyperbrowsers Web Agent
12 lines (11 loc) • 369 B
TypeScript
import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const ThinkingAction: z.ZodObject<{
thought: z.ZodString;
}, "strip", z.ZodTypeAny, {
thought: string;
}, {
thought: string;
}>;
export type ThinkingActionType = z.infer<typeof ThinkingAction>;
export declare const ThinkingActionDefinition: AgentActionDefinition;