diff --git a/src/agent/oneshot.rs b/src/agent/oneshot.rs index 9c31307..eded885 100644 --- a/src/agent/oneshot.rs +++ b/src/agent/oneshot.rs @@ -34,9 +34,6 @@ pub struct AutoAgent { pub name: String, pub tools: Vec, pub steps: Vec, - /// Collected per-run, read by Mind after completion. - pub outputs: std::collections::BTreeMap, - // Observable status pub current_phase: String, pub turn: usize, } @@ -106,7 +103,6 @@ impl AutoAgent { ) -> Self { Self { name, tools, steps, - outputs: std::collections::BTreeMap::new(), current_phase: String::new(), turn: 0, } @@ -145,7 +141,6 @@ impl AutoAgent { ) -> Result { dbglog!("[auto] {} starting, {} steps", self.name, self.steps.len()); self.turn = 0; - self.outputs.clear(); self.current_phase = self.steps.first() .map(|s| s.phase.clone()).unwrap_or_default(); let mut next_step = 0;