muryshev's picture
update
86c402d
raw
history blame
511 Bytes
"""
Модуль извлечения и сборки документов.
"""
from .core.destructurer import Destructurer
from .core.entity_repository import EntityRepository, InMemoryEntityRepository
from .core.injection_builder import InjectionBuilder
from .models import Chunk, DocumentAsEntity, LinkerEntity
__all__ = [
"Destructurer",
"InjectionBuilder",
"EntityRepository",
"InMemoryEntityRepository",
"LinkerEntity",
"Chunk",
"DocumentAsEntity",
"integrations",
]