pub enum Tier {
Free,
Deep,
}Expand description
v2.6: the product tier. See KimetsuSection::tier.
| Feature | Free | Deep |
|---|---|---|
| write-time lesson distillation | rule-based capture | model-distilled lessons |
| repo digest | rule-based assembly | model-distilled summary |
| reflection over memory clusters | not run | synthesized general principles |
| contradiction detection | cosine proximity | entailment adjudication |
| proactive inject-or-stay-silent | locally-fit statistical policy | model adjudication |
| idle-time work | consolidation, pruning, tuning | the above plus query anticipation |
The benchmark tables at https://kimetsu.dev/docs/memory-benchmark/ report both columns separately: Free is what the “model-free” claim is measured on.
Variants§
Free
Model-free. The default, and what the published claims measure.
Deep
A local small model in the loop for the features listed on Tier.
Implementations§
Trait Implementations§
impl Copy for Tier
Source§impl<'de> Deserialize<'de> for Tier
impl<'de> Deserialize<'de> for Tier
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
impl Eq for Tier
impl StructuralPartialEq for Tier
Auto Trait Implementations§
impl Freeze for Tier
impl RefUnwindSafe for Tier
impl Send for Tier
impl Sync for Tier
impl Unpin for Tier
impl UnsafeUnpin for Tier
impl UnwindSafe for Tier
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