mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
7 lines
106 B
Python
7 lines
106 B
Python
from enum import Enum
|
|
|
|
|
|
class MemoryNodeStatus(str, Enum):
|
|
ACTIVE = "active"
|
|
|
|
EXPIRED = "expired"
|