Create an AzureCosmosDBNoSqlVectorSearch vectorstore from raw texts.
from_texts(
cls,
texts: List[str],
embedding: Embeddings,
metadatas: Optional[List[dict]] = None,
**kwargs: Any = {}
) -> AzureCosmosDBNoSqlVectorSearch| Name | Type | Description |
|---|---|---|
texts* | List[str] | the texts to insert. |
embedding* | Embeddings | the embedding function to use in the store. |
metadatas | Optional[List[dict]] | Default: Nonemetadata dicts for the texts. |
**kwargs | Any | Default: {}you can pass any argument that you would
to :meth: |