mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-20 00:12:50 +00:00
10 lines
281 B
Python
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
|