mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
9 lines
133 B
Python
9 lines
133 B
Python
from enum import Enum
|
|
|
|
|
|
class MemoryRecallType(str, Enum):
|
|
SIMILAR = "similar"
|
|
|
|
KEYWORD = "keyword"
|
|
|
|
PROFILE = "profile"
|