From 2943b83b31fe28cd9a02d3cf0fe9132022f53d6c Mon Sep 17 00:00:00 2001 From: Julian Risch Date: Tue, 21 Nov 2023 09:45:00 +0100 Subject: [PATCH] fix: Add DocumentJoiner to routers' init (#6368) --- haystack/preview/components/routers/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/haystack/preview/components/routers/__init__.py b/haystack/preview/components/routers/__init__.py index c72c34288..32e9a422c 100644 --- a/haystack/preview/components/routers/__init__.py +++ b/haystack/preview/components/routers/__init__.py @@ -1,5 +1,7 @@ +from haystack.preview.components.routers.document_joiner import DocumentJoiner from haystack.preview.components.routers.file_type_router import FileTypeRouter from haystack.preview.components.routers.metadata_router import MetadataRouter from haystack.preview.components.routers.text_language_router import TextLanguageRouter -__all__ = ["FileTypeRouter", "MetadataRouter", "TextLanguageRouter"] + +__all__ = ["DocumentJoiner", "FileTypeRouter", "MetadataRouter", "TextLanguageRouter"]