Run images through the embeddings and add to the vectorstore.
add_images(
self,
uris: List[str],
metadatas: Optional[List[dict]] = None,
embeddings: Optional[List[List[float]]] = None,
return_ids: bool = False,
**kwargs: Any = {}
) -> List[str]| Name | Type | Description |
|---|---|---|
uris List[str]* | unknown | File path to images. Each URI will be added to the vectorstore as document content. |
metadatas | Optional[List[dict]] | Default: NoneOptional list of metadatas. Defaults to None. |
embeddings | Optional[List[List[float]]] | Default: NoneOptional pre-generated embeddings. Defaults to None. |