Files
n8n-enterprise-unlocked/packages/cli/src/services/ai/schemas/generateCurl.ts
2024-05-02 13:52:15 +03:00

8 lines
190 B
TypeScript

import { z } from 'zod';
export const generateCurlSchema = z.object({
curl: z
.string()
.describe('The curl command that the user could run to call the endpoint they described.'),
});