/** * Zod Schema 定义 */ import { z } from 'zod'; export declare const SearchContextArgsSchema: z.ZodObject<{ query: z.ZodString; limit: z.ZodDefault>; }, z.core.$strip>; export type SearchContextArgs = z.infer; export declare const ListTopicsArgsSchema: z.ZodObject<{ category: z.ZodDefault>>; }, z.core.$strip>; export type ListTopicsArgs = z.infer; export declare const ReadDocumentArgsSchema: z.ZodObject<{ filename: z.ZodString; category: z.ZodDefault>>; }, z.core.$strip>; export type ReadDocumentArgs = z.infer; //# sourceMappingURL=schema.d.ts.map