dify/web/gen/zod/models/create.ts
Stephen Zhou 4061c83b26
no sufix
2026-01-25 16:19:07 +08:00

11 lines
267 B
TypeScript

// This file is auto-generated by @hey-api/openapi-ts
import { z } from 'zod'
export const zCreateAnnotationRequest = z.object({
question: z.string(),
answer: z.string(),
})
export type CreateAnnotationRequestZodType = z.infer<typeof zCreateAnnotationRequest>