Skip to content

Commit

Permalink
fix: Add DocumentJoiner to routers' init (#6368)
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-risch committed Nov 21, 2023
1 parent 939e443 commit 2943b83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion haystack/preview/components/routers/__init__.py
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 2943b83

Please sign in to comment.