from_documents(
cls,
documents: list[Document],
embedding: Embeddings,
**kwargs: AnyCreate a store and add documents in one step.
:param documents: The list of documents to add to the store. :type documents: list[Document] :param embedding: The embedding model to use for embedding vector generation. :type embedding: Embeddings
:return: The created vector store instance. :rtype: Self