| 2 | |
| 3 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 4 | pub struct CompactionConfig { |
| 5 | pub preserve_recent_messages: usize, |
| 6 | pub max_estimated_tokens: usize, |
| 7 | } |
| 8 | |
| 9 | impl Default for CompactionConfig { |
| 10 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected