mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 06:14:37 +00:00
Harrison/add documents (#1197)
Co-authored-by: OmriNach <32659330+OmriNach@users.noreply.github.com>
This commit is contained in:
parent
0b6a650cb4
commit
0c84ce1082
@ -13,18 +13,37 @@ class VectorStore(ABC):
|
|||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def add_texts(
|
def add_texts(
|
||||||
self, texts: Iterable[str], metadatas: Optional[List[dict]] = None
|
self,
|
||||||
|
texts: Iterable[str],
|
||||||
|
metadatas: Optional[List[dict]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
texts: Iterable of strings to add to the vectorstore.
|
texts: Iterable of strings to add to the vectorstore.
|
||||||
metadatas: Optional list of metadatas associated with the texts.
|
metadatas: Optional list of metadatas associated with the texts.
|
||||||
|
kwargs: vectorstore specific parameters
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
List of ids from adding the texts into the vectorstore.
|
List of ids from adding the texts into the vectorstore.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def add_documents(self, documents: List[Document], **kwargs: Any) -> List[str]:
|
||||||
|
"""Run more documents through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
documents (List[Document]: Documents to add to the vectorstore.
|
||||||
|
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
List[str]: List of IDs of the added texts.
|
||||||
|
"""
|
||||||
|
# TODO: Handle the case where the user doesn't provide ids on the Collection
|
||||||
|
texts = [doc.page_content for doc in documents]
|
||||||
|
metadatas = [doc.metadata for doc in documents]
|
||||||
|
return self.add_texts(texts, metadatas, **kwargs)
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def similarity_search(
|
def similarity_search(
|
||||||
self, query: str, k: int = 4, **kwargs: Any
|
self, query: str, k: int = 4, **kwargs: Any
|
||||||
|
@ -76,6 +76,7 @@ class Chroma(VectorStore):
|
|||||||
texts: Iterable[str],
|
texts: Iterable[str],
|
||||||
metadatas: Optional[List[dict]] = None,
|
metadatas: Optional[List[dict]] = None,
|
||||||
ids: Optional[List[str]] = None,
|
ids: Optional[List[str]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -68,7 +68,10 @@ class ElasticVectorSearch(VectorStore):
|
|||||||
self.client = es_client
|
self.client = es_client
|
||||||
|
|
||||||
def add_texts(
|
def add_texts(
|
||||||
self, texts: Iterable[str], metadatas: Optional[List[dict]] = None
|
self,
|
||||||
|
texts: Iterable[str],
|
||||||
|
metadatas: Optional[List[dict]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -56,7 +56,10 @@ class FAISS(VectorStore):
|
|||||||
self.index_to_docstore_id = index_to_docstore_id
|
self.index_to_docstore_id = index_to_docstore_id
|
||||||
|
|
||||||
def add_texts(
|
def add_texts(
|
||||||
self, texts: Iterable[str], metadatas: Optional[List[dict]] = None
|
self,
|
||||||
|
texts: Iterable[str],
|
||||||
|
metadatas: Optional[List[dict]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -88,6 +88,7 @@ class Milvus(VectorStore):
|
|||||||
metadatas: Optional[List[dict]] = None,
|
metadatas: Optional[List[dict]] = None,
|
||||||
partition_name: Optional[str] = None,
|
partition_name: Optional[str] = None,
|
||||||
timeout: Optional[int] = None,
|
timeout: Optional[int] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Insert text data into Milvus.
|
"""Insert text data into Milvus.
|
||||||
|
|
||||||
|
@ -230,6 +230,7 @@ class OpenSearchVectorSearch(VectorStore):
|
|||||||
texts: Iterable[str],
|
texts: Iterable[str],
|
||||||
metadatas: Optional[List[dict]] = None,
|
metadatas: Optional[List[dict]] = None,
|
||||||
bulk_size: int = 500,
|
bulk_size: int = 500,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ class Pinecone(VectorStore):
|
|||||||
metadatas: Optional[List[dict]] = None,
|
metadatas: Optional[List[dict]] = None,
|
||||||
ids: Optional[List[str]] = None,
|
ids: Optional[List[str]] = None,
|
||||||
namespace: Optional[str] = None,
|
namespace: Optional[str] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -49,7 +49,10 @@ class Qdrant(VectorStore):
|
|||||||
self.embedding_function = embedding_function
|
self.embedding_function = embedding_function
|
||||||
|
|
||||||
def add_texts(
|
def add_texts(
|
||||||
self, texts: Iterable[str], metadatas: Optional[List[dict]] = None
|
self,
|
||||||
|
texts: Iterable[str],
|
||||||
|
metadatas: Optional[List[dict]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Run more texts through the embeddings and add to the vectorstore.
|
"""Run more texts through the embeddings and add to the vectorstore.
|
||||||
|
|
||||||
|
@ -51,7 +51,10 @@ class Weaviate(VectorStore):
|
|||||||
self._query_attrs.extend(attributes)
|
self._query_attrs.extend(attributes)
|
||||||
|
|
||||||
def add_texts(
|
def add_texts(
|
||||||
self, texts: Iterable[str], metadatas: Optional[List[dict]] = None
|
self,
|
||||||
|
texts: Iterable[str],
|
||||||
|
metadatas: Optional[List[dict]] = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> List[str]:
|
) -> List[str]:
|
||||||
"""Upload texts with metadata (properties) to Weaviate."""
|
"""Upload texts with metadata (properties) to Weaviate."""
|
||||||
from weaviate.util import get_valid_uuid
|
from weaviate.util import get_valid_uuid
|
||||||
|
Loading…
Reference in New Issue
Block a user