import { z } from "zod"; export const searchBodySchema = z.object({ query: z.string().min(1), topK: z.number().int().positive().optional() });