do-memory-core 0.1.30

Core episodic learning system for AI agents with pattern extraction, reward scoring, and dual storage backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Risk assessment structures

/// Risk assessment result for pattern application
#[derive(Debug, Clone)]
pub struct RiskAssessment {
    pub overall_risk_score: f32,
    pub step_level_risks: Vec<f32>,
    pub context_complexity_risk: f32,
    pub tool_compatibility_risk: f32,
    pub should_inject_validation: bool,
}