Compare commits

..
2 Commits
Author SHA1 Message Date
milan 3f39394cc8 merge 2026-07-22 19:48:13 +02:00
milan e1087c2ce5 add function to remove history from AgentChat 2026-07-22 19:46:43 +02:00
+4
View File
@@ -381,6 +381,10 @@ impl AgentChat {
message_history: vec![],
}
}
pub fn remove_history(&mut self) {
self.message_history = vec![];
}
}
#[cfg(test)]