UNPKG

@statelyai/agent

Version:

Stateful agents that make decisions based on finite-state machine models

12 lines (9 loc) 265 B
import { ZodType, type SomeZodObject } from 'zod'; export type ZodEventMapping = { // map event types to Zod types [eventType: string]: SomeZodObject; }; export type ZodContextMapping = { // map context keys to Zod types [contextKey: string]: ZodType; };