pub struct EnrichmentResult {
pub memories_stored: usize,
pub entities_processed: usize,
pub edges_created: usize,
pub duplicates_skipped: usize,
pub contradictions_found: usize,
pub completed_at_turn: u64,
pub entities_linked: usize,
pub entities_ambiguous: usize,
}Expand description
Result of running the enrichment pipeline.
Fields§
§memories_stored: usizeNumber of new memories stored from extraction.
entities_processed: usizeNumber of entity nodes created or updated.
edges_created: usizeNumber of edges created (Derived, Related, PartOf).
duplicates_skipped: usizeNumber of memories skipped as duplicates.
contradictions_found: usizeNumber of contradictions detected.
completed_at_turn: u64Turn ID at which enrichment was completed.
entities_linked: usizeNumber of entity links created (Related edges between same-name entities).
entities_ambiguous: usizeNumber of entity pairs left ambiguous (below merge threshold).
Trait Implementations§
Source§impl Clone for EnrichmentResult
impl Clone for EnrichmentResult
Source§fn clone(&self) -> EnrichmentResult
fn clone(&self) -> EnrichmentResult
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 EnrichmentResult
impl Debug for EnrichmentResult
Source§impl Default for EnrichmentResult
impl Default for EnrichmentResult
Source§fn default() -> EnrichmentResult
fn default() -> EnrichmentResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EnrichmentResult
impl RefUnwindSafe for EnrichmentResult
impl Send for EnrichmentResult
impl Sync for EnrichmentResult
impl Unpin for EnrichmentResult
impl UnsafeUnpin for EnrichmentResult
impl UnwindSafe for EnrichmentResult
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