fix: Add DocumentJoiner to routers' init (#6368)

This commit is contained in:
Julian Risch 2023-11-21 09:45:00 +01:00 committed by GitHub
parent 939e443ee8
commit 2943b83b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"]