Receive
Give new claims a holding area.
Incoming knowledge stays in a separate review state, with its source and arrival time attached.
Give new information a review path before it becomes trusted context. Learning Isolation in Akasha keeps incoming claims separate while configured checks assess their consistency, sources, and confidence.
Learning isolation
Give a new claim somewhere to be checked before it becomes accepted knowledge.
Your accepted knowledge stays separate.
Incoming knowledge enters a separate review state. Your accepted records remain unchanged.
An imported report says a customer changed their requirements. Existing records say something else. Learning Isolation holds the new claim for checks and review, instead of immediately replacing what the agent already knows.
Receive
Incoming knowledge stays in a separate review state, with its source and arrival time attached.
Check
Validation checks look for inconsistencies, unusual inputs, and signs of poisoned information before a claim moves forward.
Consolidate
The consolidation pipeline groups related experiences and identifies candidate facts for longer-term memory.
Verify
Rules check candidate facts for contradictions, time relationships, and valid structure before required verification is satisfied.
Accept
Acceptance follows validation and trust requirements. Items can be approved, rejected, or returned for another round of checks.
Recover
Use saved checkpoints to restore selected model or embedding components if a later update needs to be reversed.
Use the Rust quarantine library to configure how incoming knowledge is reviewed. Choose capacity and test requirements, then integrate those rules with the sources and checks your application uses.
use akasha_learning_quarantine::config::QuarantineConfig;
let mut review = QuarantineConfig::default();
review.require_all_tests = true;
review.max_capacity = 5_000;
review.validate()?;
// Supply this configuration when integrating the quarantine engine.
// Your application supplies the knowledge and verification context.Configure how incoming claims are tested and when they can be accepted. The quarantine library exposes review rules and trust settings for developers integrating a knowledge pipeline.
Build a review path for new information before it joins the knowledge your agent relies on.