export interface DocumentSchema {
    content: string;
    id?: string;
    metadata?: Record<string, string>;
}
