Interface VectorStoreZepLoadNodeParameters

Source
interface VectorStoreZepLoadNodeParameters {
    collectionName?: string;
    options?: {
        embeddingDimensions?: number;
        metadata?: {
            metadataValues: { name: string; value?: string }[];
        };
    };
}

Properties§

Source§

readonly collectionName?: string

Source§

readonly options?: {
    embeddingDimensions?: number;
    metadata?: {
        metadataValues: { name: string; value?: string }[];
    };
}

Default: {}