* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
11 lines
279 B
Python
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"
|