[docs]classSimpleMemory(BaseMemory):"""Simple memory for storing context or other information that shouldn't ever change between prompts. """memories:dict[str,Any]={}@property@overridedefmemory_variables(self)->list[str]:returnlist(self.memories.keys())