Interface CollectionOptions<Schema>

Represents the options for the createCollection command.

Field

vector - Options related to vector search.

Field

indexing - Options related to indexing.

Field

defaultId - Options related to the default ID.

interface CollectionOptions<Schema> {
    defaultId?: DefaultIdOptions;
    indexing?: IndexingOptions<Schema>;
    vector?: VectorOptions;
}

Type Parameters

Hierarchy (view full)

Properties

defaultId?: DefaultIdOptions

Options related to the default ID.

Options related to indexing.

vector?: VectorOptions

Options related to vector search.