pub enum CompactSkip {
PendingToolCalls,
TooShort(usize),
HistoryTooLarge,
}Expand description
Why compaction was skipped (not an error, just a precondition).
Variants§
PendingToolCalls
Session has unresolved tool calls — can’t compact safely.
TooShort(usize)
Session is too short to compact (contains N messages).
HistoryTooLarge
History is too large for the current model to summarize without data loss. The user should switch to a model with a larger context window or start a new session.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CompactSkip
impl RefUnwindSafe for CompactSkip
impl Send for CompactSkip
impl Sync for CompactSkip
impl Unpin for CompactSkip
impl UnsafeUnpin for CompactSkip
impl UnwindSafe for CompactSkip
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more