style: Cleaned up all graph agent code

This commit is contained in:
2026-05-18 13:46:52 -06:00
parent 35e1b14843
commit 5bd0766a60
23 changed files with 560 additions and 652 deletions
+1 -6
View File
@@ -9,12 +9,7 @@ use std::sync::{Arc, Weak};
pub enum RagKey {
Named(String),
Agent(String),
/// A `rag` node's per-node knowledge base, keyed by owning agent name
/// and node id.
GraphNode {
agent: String,
node: String,
},
GraphNode { agent: String, node: String },
}
#[derive(Default)]