Get recent memories
(&self, limit: usize)
| 222 | |
| 223 | /// Get recent memories |
| 224 | pub async fn get_recent(&self, limit: usize) -> anyhow::Result<Vec<MemoryItem>> { |
| 225 | self.store.get_recent(limit).await |
| 226 | } |
| 227 | |
| 228 | /// Add to working memory (auto-trims by relevance if over capacity) |
| 229 | pub async fn add_to_working(&self, item: MemoryItem) -> anyhow::Result<()> { |
no outgoing calls
no test coverage detected