mnemo_core/model/
agent_profile.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
4pub struct AgentProfile {
5 pub agent_id: String,
6 pub avg_importance: f64,
7 pub avg_content_length: f64,
8 pub total_memories: u64,
9 pub last_updated: String,
10}