ReMe/reme/agent/memory/base_memory_agent.py

10 lines
281 B
Python

"""Base memory agent for handling memory operations with tool-based reasoning."""
from abc import ABCMeta
from ...core.enumeration import MemoryType
from ...core.op import BaseReact
class BaseMemoryAgent(BaseReact, metaclass=ABCMeta):
memory_type: MemoryType | None = None