TileDB(
self,
embedding: Embeddings,
index_uri: str,
metric: str,
*| Name | Type | Description |
|---|---|---|
allow_dangerous_deserialization | bool | Default: Falsewhether to allow deserialization of the data which involves loading data using pickle. data can be modified by malicious actors to deliver a malicious payload that results in execution of arbitrary code on your machine. |
TileDB vector store.
To use, you should have the tiledb-vector-search python package installed.
Example:
.. code-block:: python
from langchain_community import TileDB embeddings = OpenAIEmbeddings() db = TileDB(embeddings, index_uri, metric)