This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pdf-text-parsing/utils/data.ts
2024-05-07 21:52:38 +02:00

8 lines
146 B
TypeScript

import { z } from 'zod';
export const responseSchema = z.object({
text: z.string()
});
export type Response = z.infer<typeof responseSchema>;