Databricks SDK for JavaScript
    Preparing search index...

    Name of an embedding source column and its associated embedding model endpoint.

    interface EmbeddingSourceColumn {
        embeddingModelEndpoint?: string;
        modelEndpointNameForQuery?: string;
        name?: string;
    }
    Index

    Properties

    embeddingModelEndpoint?: string

    Name of the embedding model endpoint, used by default for both ingestion and querying.

    modelEndpointNameForQuery?: string

    Name of the embedding model endpoint which, if specified, is used for querying (not ingestion).

    name?: string

    Name of the source column.