Databricks SDK for JavaScript
    Preparing search index...

    IndexSpec specifies a vector search index source configuration.

    interface IndexSpec {
        docUriCol?: string;
        indexName?: string;
        textCol?: string;
    }
    Index

    Properties

    docUriCol?: string

    The column that specifies a link or reference to where the information came from.

    indexName?: string

    Full UC name of the vector search index, in the format of {CATALOG}.{SCHEMA}.{INDEX_NAME}.

    textCol?: string

    The column that includes the document text for retrieval.