@conciergus/chat - v0.3.1
    Preparing search index...

    Interface DocumentChunk

    interface DocumentChunk {
        id: string;
        content: string;
        embedding: number[];
        metadata: {
            documentId: string;
            chunkIndex: number;
            source: string;
            title?: string;
            tags?: string[];
            createdAt: Date;
            updatedAt: Date;
        };
    }
    Index

    Properties

    id: string
    content: string
    embedding: number[]
    metadata: {
        documentId: string;
        chunkIndex: number;
        source: string;
        title?: string;
        tags?: string[];
        createdAt: Date;
        updatedAt: Date;
    }