mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
13 lines
193 B
Python
13 lines
193 B
Python
from enum import Enum
|
|
|
|
|
|
class MemoryNodeStatus(str, Enum):
|
|
NEW = "new"
|
|
|
|
MODIFIED = "modified"
|
|
|
|
CONTENT_MODIFIED = "content_modified"
|
|
|
|
ACTIVE = "active"
|
|
|
|
EXPIRED = "expired"
|