UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

7 lines (6 loc) 168 B
import { z } from "zod"; export type SchemaDefinition<NAME extends string, STRUCTURE> = { name: NAME; description?: string; schema: z.Schema<STRUCTURE>; };