Skip to content

Commit

Permalink
update the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alleria1809 committed Jun 30, 2024
1 parent b655780 commit 80596b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lightrag/components/data_process/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""Components here are used for data processing/transformation."""

from .document_splitter import DocumentSplitter
from .text_splitter import TextSplitter
from .data_components import ToEmbeddings, RetrieverOutputToContextStr
from lightrag.utils.registry import EntityMapping


__all__ = ["DocumentSplitter", "ToEmbeddings", "RetrieverOutputToContextStr"]
__all__ = ["TextSplitter", "ToEmbeddings", "RetrieverOutputToContextStr"]

for name in __all__:
EntityMapping.register(name, globals()[name])

0 comments on commit 80596b1

Please sign in to comment.