pub struct CompressionConfig {
pub min_tokens_to_compress: usize,
pub max_turns: usize,
pub max_system_tokens: usize,
pub strategy: CompressionStrategy,
pub dedup_max_merged_chars: usize,
pub token_estimator: TokenEstimator,
}Fields§
§min_tokens_to_compress: usizeBelow this token count, no compression is applied
max_turns: usizeSlidingWindow: maximum number of turns to keep
max_system_tokens: usizeSlidingWindow: maximum system prompt tokens (0 = no limit)
strategy: CompressionStrategyCompression strategy to use
dedup_max_merged_chars: usizeDedup: maximum merged chars for adjacent same-role messages (0 = no limit)
token_estimator: TokenEstimatorInjectable token estimator (skipped during serialization)
Trait Implementations§
Source§impl Clone for CompressionConfig
impl Clone for CompressionConfig
Source§fn clone(&self) -> CompressionConfig
fn clone(&self) -> CompressionConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompressionConfig
impl Debug for CompressionConfig
Source§impl<'de> Deserialize<'de> for CompressionConfig
impl<'de> Deserialize<'de> for CompressionConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompressionConfig
impl !RefUnwindSafe for CompressionConfig
impl Send for CompressionConfig
impl Sync for CompressionConfig
impl Unpin for CompressionConfig
impl UnsafeUnpin for CompressionConfig
impl !UnwindSafe for CompressionConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more