GitHub Actions
Deploy from GitHub Actions
c9622da
raw
history blame contribute delete
219 Bytes
"""Document loader module for FreeRAG."""
from src.document_loader.loader import DocumentLoader, Document
from src.document_loader.splitter import TextSplitter
__all__ = ["DocumentLoader", "Document", "TextSplitter"]