2026-05-18 16:32:42 +08:00
|
|
|
"""Initialize the app.domain.documents package."""
|
|
|
|
|
|
|
|
|
|
from .models import Chunk, Document, DocumentStatus, ParsedDocument
|
2026-05-20 23:34:08 +08:00
|
|
|
from .ports import ChunkBuilder, DocumentBinaryStore, DocumentParser, DocumentRepository, ParseArtifactStore
|
2026-05-18 16:32:42 +08:00
|
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"Chunk",
|
|
|
|
|
"Document",
|
|
|
|
|
"DocumentStatus",
|
|
|
|
|
"ParsedDocument",
|
|
|
|
|
"ChunkBuilder",
|
|
|
|
|
"DocumentBinaryStore",
|
|
|
|
|
"DocumentParser",
|
|
|
|
|
"DocumentRepository",
|
2026-05-20 23:34:08 +08:00
|
|
|
"ParseArtifactStore",
|
2026-05-18 16:32:42 +08:00
|
|
|
]
|