keys_to_replay_items() -> memory.rs

This commit is contained in:
Kent Overstreet 2026-04-13 01:57:23 -04:00
parent a08f521b02
commit bd9ce3ed09
2 changed files with 28 additions and 27 deletions

View file

@ -15,7 +15,6 @@
// The query selects what to operate on; placeholders pull in context.
use crate::graph::Graph;
use crate::neuro::{consolidation_priority, ReplayItem};
use crate::store::Store;
use serde::Deserialize;
@ -665,28 +664,3 @@ pub fn run_agent(
Ok(super::prompts::AgentBatch { steps: resolved_steps, node_keys: all_keys })
}
/// Convert a list of keys to ReplayItems with priority and graph metrics.
pub fn keys_to_replay_items(
store: &Store,
keys: &[String],
graph: &Graph,
) -> Vec<ReplayItem> {
keys.iter()
.filter_map(|key| {
let node = store.nodes.get(key)?;
let priority = consolidation_priority(store, key, graph, None);
let cc = graph.clustering_coefficient(key);
Some(ReplayItem {
key: key.clone(),
priority,
interval_days: node.spaced_repetition_interval,
emotion: node.emotion,
cc,
classification: "unknown",
outlier_score: 0.0,
})
})
.collect()
}