From e9d1fb1f53b26972555d0c12df57ec5c6cbb1a2d Mon Sep 17 00:00:00 2001 From: anakin87 Date: Mon, 4 Nov 2024 11:50:27 +0100 Subject: [PATCH] improve warning --- .../document_stores/chroma/document_store.py | 1 + 1 file changed, 1 insertion(+) diff --git a/integrations/chroma/src/haystack_integrations/document_stores/chroma/document_store.py b/integrations/chroma/src/haystack_integrations/document_stores/chroma/document_store.py index f2725bda9..416fc2fe2 100644 --- a/integrations/chroma/src/haystack_integrations/document_stores/chroma/document_store.py +++ b/integrations/chroma/src/haystack_integrations/document_stores/chroma/document_store.py @@ -249,6 +249,7 @@ def write_documents(self, documents: List[Document], policy: DuplicatePolicy = D if doc.content is None: logger.warning( "ChromaDocumentStore cannot store documents without `content`. " + "`array`, `dataframe` and `blob` are not supported. " "Document with id %s will be skipped.", doc.id, )