pub enum CompactionEvent {
Triggered {
context_tokens: usize,
iteration: usize,
source: String,
},
Started {
message_count: usize,
},
Completed {
result: CompactedContext,
duration_ms: u64,
},
Skipped {
reason: String,
},
Failed {
error: String,
},
}Expand description
CompactionEvent.
Variants§
Triggered
Variant.
Fields
§
source: StringSource of the context_tokens value:
"provider-reported": the agent state’slast_input_tokens(ground truth from the most recent providerusage.input_tokens)."bytes/4 heuristic (cold start)": the legacyserialized_json.len() / 4estimate — used only on the very first turn before any provider count is available."empty": no messages have been sent yet.
Added for issue #28 (gap 2) so consumers can tell whether a compaction trigger is based on real token accounting or the heuristic.
Started
Variant.
Completed
Variant.
Skipped
Variant.
Failed
Variant.
Trait Implementations§
Source§impl Clone for CompactionEvent
impl Clone for CompactionEvent
Source§fn clone(&self) -> CompactionEvent
fn clone(&self) -> CompactionEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompactionEvent
impl Debug for CompactionEvent
Source§impl<'de> Deserialize<'de> for CompactionEvent
impl<'de> Deserialize<'de> for CompactionEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompactionEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompactionEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CompactionEvent
impl Serialize for CompactionEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CompactionEvent
impl RefUnwindSafe for CompactionEvent
impl Send for CompactionEvent
impl Sync for CompactionEvent
impl Unpin for CompactionEvent
impl UnsafeUnpin for CompactionEvent
impl UnwindSafe for CompactionEvent
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