Databricks SDK for JavaScript
    Preparing search index...

    Specification for a Direct Access index — the customer manages vectors and metadata directly.

    interface DirectAccessIndexSpec {
        embeddingSourceColumns?: EmbeddingSourceColumn[];
        embeddingVectorColumns?: EmbeddingVectorColumn[];
        schemaJson?: string;
    }
    Index

    Properties

    embeddingSourceColumns?: EmbeddingSourceColumn[]

    The columns that contain the embedding source.

    embeddingVectorColumns?: EmbeddingVectorColumn[]

    The columns that contain the embedding vectors.

    schemaJson?: string

    The schema of the index in JSON format. Supported types are integer, long, float, double, boolean, string, date, timestamp. Supported types for vector columns: array<float>, array<double>.