Use CouchbaseSearchVectorStoreArgs from @langchain/community/vectorstores/couchbase_search instead. This interface will be removed in a future release.

interface CouchbaseVectorStoreArgs {
    addVectorOptions?: AddVectorOptions;
    bucketName: string;
    cluster: Cluster;
    collectionName: string;
    embeddingKey?: string;
    indexName: string;
    scopeName: string;
    scopedIndex?: boolean;
    textKey?: string;
}

Properties

addVectorOptions?: AddVectorOptions
bucketName: string
cluster: Cluster
collectionName: string
embeddingKey?: string
indexName: string
scopeName: string
scopedIndex?: boolean
textKey?: string