Load a TileDB index from a URI.
load(
cls,
index_uri: str,
embedding: Embeddings,
*,
metric: str = DEFAULT_METRIC,
config: Optional[Mapping[str, Any]] = None,
timestamp: Any = None,
**kwargs: Any = {}
) -> TileDB| Name | Type | Description |
|---|---|---|
index_uri* | str | The URI of the TileDB vector index. |
embedding* | Embeddings | Embeddings to use when generating queries. |
metric | str | Default: DEFAULT_METRICOptional, Metric to use for indexing. Defaults to "euclidean". |
config | Optional[Mapping[str, Any]] | Default: NoneOptional, TileDB config |
timestamp | Any | Default: NoneOptional, timestamp to use for opening the arrays. |