import { z } from "zod"; export const openaiPromptSchema = z.object({ prompt: z.any(), }); export type OpenAIPromptInput = z.infer;