# Neural Integrated Capability
# Created: 2025-10-24 23:04:27.645055

class EmotionComplexityAI:
    def __init__(self):
        self.emotional_model = {}
    
    def detect_complex_emotion(self, emotion):
        return self.emotional_model.get(emotion, "unknown")
        
    def learn_emotions(self, emotion, trigger):
        if not isinstance(trigger, str):
            raise ValueError("The trigger must be a string.")
        self.emotional_model[emotion] = trigger