UNPKG

@paybyrd/ai-agent-toolkit

Version:

Toolkit for building AI agents with various models

15 lines (14 loc) 309 B
import { z } from 'zod'; export type Tool = { method: string; name: string; description: string; parameters: z.ZodObject<any, any, any, any>; actions: { [key: string]: { [action: string]: boolean; }; }; }; declare const tools: Tool[]; export default tools;