File size: 531 Bytes
300df0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
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",
]