10 lines
208 B
Python
10 lines
208 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"
|