# Neural Integrated Capability
# Created: 2025-10-25 03:11:13.862455

class EmotionMemoryAI:
    def __init__(self):
        self.emotional_memory = {}
    
    def store_emotion(self, conversation_id, emotion):
        """Store the emotional context of a particular conversation."""
        if not isinstance(conversation_id, str) or not isinstance(emotion, str):
            raise ValueError("Invalid inputs. The 'conversation_id' should be a string and 'emotion' should also be a string.")
        
        self.emotional_memory[conversation_id] = emotion
    
    def recall_emotion(self, conversation_id):
        """Recall the emotional context of a particular conversation."""
        return self.emotional_memory.get(conversation_id)