Vector store arguments RocksetStore

interface RocksetLibArgs {
    client: MainApi;
    collectionName: string;
    embeddingKey?: string;
    filter?: string;
    similarityMetric?: "COSINE_SIM" | "EUCLIDEAN_DIST" | "DOT_PRODUCT";
    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?: "COSINE_SIM" | "EUCLIDEAN_DIST" | "DOT_PRODUCT"

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

Member

collectionName

Generated using TypeDoc