ReMe/memory_scope/enumeration/memory_recall_enum.py
2024-06-20 22:18:57 +08:00

9 lines
133 B
Python

from enum import Enum
class MemoryRecallType(str, Enum):
SIMILAR = "similar"
KEYWORD = "keyword"
PROFILE = "profile"