Semantic search over long-term memory.
(self, query: str, limit: int = 5)
| 591 | self.episodic.log(action, details) |
| 592 | |
| 593 | def search(self, query: str, limit: int = 5) -> List[Dict]: |
| 594 | """Semantic search over long-term memory.""" |
| 595 | return self.longterm.search(query, limit) |
| 596 | |
| 597 | def get_working_content(self) -> Dict[str, str]: |
| 598 | """Return all {path: content} pairs from working memory.""" |
no outgoing calls
no test coverage detected