RememberFact stores a single fact deterministically (no LLM). category may be empty to auto-classify. Returns true if newly added.
(content, category string)
| 166 | // RememberFact stores a single fact deterministically (no LLM). category |
| 167 | // may be empty to auto-classify. Returns true if newly added. |
| 168 | func (ms *MemoryStore) RememberFact(content, category string) bool { |
| 169 | return ms.manager.RememberFact(content, category) |
| 170 | } |
| 171 | |
| 172 | // UpdateProfile applies deterministic profile updates and returns whether |
| 173 | // anything changed. |
no outgoing calls
no test coverage detected