"""
Core description extraction functionality.
Version 3.0 - JSON-based configuration with NLP enhancement
"""

from .extractor import EnhancedPolishExtractor
from .mappings import PolishRealEstateMappings, MAPPINGS, get_mappings
from .nlp_extractor import NLPEnhancedExtractor

__all__ = [
    'EnhancedPolishExtractor',
    'NLPEnhancedExtractor',
    'PolishRealEstateMappings',
    'MAPPINGS',
    'get_mappings',
]
