Files
letta-server/letta/services/summarizer/enums.py
Kian Jones b8e9a80d93 merge this (#4759)
* wait I forgot to comit locally

* cp the entire core directory and then rm the .git subdir
2025-09-17 15:47:40 -07:00

11 lines
279 B
Python

from enum import Enum
class SummarizationMode(str, Enum):
"""
Represents possible modes of summarization for conversation trimming.
"""
STATIC_MESSAGE_BUFFER = "static_message_buffer_mode"
PARTIAL_EVICT_MESSAGE_BUFFER = "partial_evict_message_buffer_mode"