diff --git a/cognee/modules/chunking/__init__.py b/cognee/modules/chunking/__init__.py new file mode 100644 index 000000000..94a4777f1 --- /dev/null +++ b/cognee/modules/chunking/__init__.py @@ -0,0 +1,5 @@ +from .TextChunker import TextChunker +from .LangchainChunker import LangchainChunker +from .Chunker import Chunker + +__all__ = ["TextChunker", "LangchainChunker", "Chunker"] \ No newline at end of file