mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
11 lines
267 B
TypeScript
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>
|