Run more texts through the embeddings and add to the vectorstore.
aadd_texts(
self,
texts: Iterable[str],
metadatas: Optional[List[dict]] = None,
ids: Optional[List[str]] = None,
concurrency: int = 16,
ttl_seconds: Optional[int] = None,
**kwargs: Any = {}
) -> List[str]| Name | Type | Description |
|---|---|---|
texts* | Iterable[str] | Texts to add to the vectorstore. |
metadatas | Optional[List[dict]] | Default: NoneOptional list of metadatas. |
ids | Optional[List[str]] | Default: NoneOptional list of IDs. |
concurrency | int | Default: 16Number of concurrent queries to the database. Defaults to 16. |
ttl_seconds | Optional[int] | Default: NoneOptional time-to-live for the added texts. |