Run more texts through the embeddings and add to the VectorStore.
add_texts(
self,
texts: Iterable[str],
metadatas: list[dict] | None = None,
*,
ids: list[str] | None = None,
**kwargs: Any = {}
) -> list[str]| Name | Type | Description |
|---|---|---|
texts* | Iterable[str] | Iterable of strings to add to the |
metadatas | list[dict] | None | Default: NoneOptional list of metadatas associated with the texts. |
ids | list[str] | None | Default: NoneOptional list of IDs associated with the texts. |
**kwargs | Any | Default: {}
One of the kwargs should be |