thinhtt
Deploy from local
300df0f
Raw
History Blame Contribute Delete
531 Bytes
"""
Cross-Reference Extraction Module
==================================
Extracts internal, external, and modification references
from Vietnamese legal document segments stored in Neo4j.
"""
from .models import (
InternalRef,
ExternalRef,
ModificationRef,
RefType,
ModAction,
ExtractionResult,
)
from .extractor import CrossReferenceExtractor
__all__ = [
"CrossReferenceExtractor",
"InternalRef",
"ExternalRef",
"ModificationRef",
"RefType",
"ModAction",
"ExtractionResult",
]