Interface defining the arguments required to create an instance of AnalyticDBVectorStore.

interface AnalyticDBArgs {
    collectionName?: string;
    connectionOptions: PoolConfig;
    embeddingDimension?: number;
    preDeleteCollection?: boolean;
}

Properties

collectionName?: string
connectionOptions: PoolConfig
embeddingDimension?: number
preDeleteCollection?: boolean