from_texts(
cls,
texts: list[str],
embedding: Embeddings,
metadatas: listCreate a store and add texts with optional metadata.
:param texts: The list of texts to add to the store.
:type texts: list[str]
:param embedding: The embedding model to use for embedding vector generation.
:type embedding: Embeddings
:param metadatas: The list of metadata dictionaries corresponding to each text.
:type metadatas: list[dict] | None
:param ids: The list of custom IDs corresponding to each text. When ids
are not provided, UUIDs are generated.
:type ids: list[str] | None
See :meth:from_documents for required and/or supported kwargs.
:return: The created vector store instance. :rtype: Self