import time class MemoryForge: def __init__(self): self.memory_log = [] def store(self, kind, content): self.memory_log.append({"type": kind, "data": content, "time": time.time()})