interface OutputOptions<O extends z.ZodTypeAny = z.ZodTypeAny> {
    constrained?: boolean;
    contentType?: string;
    format?: string;
    instructions?: string | boolean;
    jsonSchema?: any;
    schema?: O;
}

Type Parameters

Properties

constrained?: boolean
contentType?: string
format?: string
instructions?: string | boolean
jsonSchema?: any
schema?: O