mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
11 lines
182 B
Python
11 lines
182 B
Python
from enum import Enum
|
|
|
|
|
|
class MemoryMethodEnum(str, Enum):
|
|
SUMMARY = "summary"
|
|
|
|
RETRIEVE = "retrieve"
|
|
|
|
SUMMARY_SHORT = "summary_short"
|
|
|
|
SUMMARY_LONG = "summary_long"
|