File size: 854 Bytes
8f05ad1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
"""
Stack 2.9 Enhancement Modules

This package provides comprehensive enhancements for the Stack 2.9 model:
- NLP: Contextual embeddings, entity recognition, intent detection
- Knowledge Graph: Graph-based knowledge with RAG support
- Emotional Intelligence: Sentiment analysis and empathetic responses
- Collaboration: MCP integration, conversation state management
- Learning: Feedback collection, continuous improvement
"""

from .config import (
    EnhancementConfig,
    NLPConfig,
    KnowledgeGraphConfig,
    EmotionalIntelligenceConfig,
    CollaborationConfig,
    LearningConfig,
    get_config,
    set_config,
)

__version__ = "2.9.0"

__all__ = [
    "EnhancementConfig",
    "NLPConfig",
    "KnowledgeGraphConfig",
    "EmotionalIntelligenceConfig",
    "CollaborationConfig",
    "LearningConfig",
    "get_config",
    "set_config",
]