walidsobhie-code
feat: Add comprehensive enhancement modules for Stack 2.9
8f05ad1
"""
NLP Enhancement Module
Provides:
- Contextual embeddings (BERT, RoBERTa)
- Entity recognition
- Intent detection
"""
from .contextual_embeddings import ContextualEmbedder
from .entity_recognition import EntityRecognizer
from .intent_detection import IntentDetector
__all__ = [
"ContextualEmbedder",
"EntityRecognizer",
"IntentDetector",
]