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