Interface IDocumentCollectionModel

interface IDocumentCollectionModel {
    created_at?: Date;
    description?: string;
    document_count?: number;
    document_embedded_count?: number;
    embedding_dimensions?: number;
    is_auto_embedded?: boolean;
    is_indexed?: boolean;
    is_normalized?: boolean;
    metadata?: Record<string, any>;
    name: string;
    updated_at?: Date;
    uuid?: string;
}

Implemented by

Properties

created_at?: Date
description?: string
document_count?: number
document_embedded_count?: number
embedding_dimensions?: number
is_auto_embedded?: boolean
is_indexed?: boolean
is_normalized?: boolean
metadata?: Record<string, any>
name: string
updated_at?: Date
uuid?: string