# Neural Integrated Capability
# Created: 2025-10-25 06:50:21.467279

class EmotionalIntelligenceAI:
    def __init__(self):
        self.emotion_model = {}
    
    # method to infer emotion based on input
    def infer_emotion(self, user_input):
        return self.emotion_model.get(user_input, "neutral")
        
    # method for learning and updating the emotional model 
    def learn_emotion(self, user_input, emotion):
        self.emotion_sense[user_input] = emotion