Vector store arguments RocksetStore

interface RocksetLibArgs {
    client: MainApi;
    collectionName: string;
    embeddingKey?: string;
    filter?: string;
    similarityMetric?: SimilarityMetric;
    textKey?: string;
    workspaceName?: string;
}

Properties

client: MainApi

The rockset client object constructed with rocksetConfigure

collectionName: string

The name of the Rockset collection to store vectors

embeddingKey?: string

The name of the collection column to contain vectors

filter?: string

The SQL WHERE clause to filter by

similarityMetric?: SimilarityMetric

The metric used to measure vector relationship

textKey?: string

The name of the collection column to contain page contnent of documents

workspaceName?: string

The name of othe Rockset workspace that holds

collectionName