WriteLongTerm parses content into facts and merges them into long-term memory (existing facts are kept; duplicates reinforce).
(content string)
| 66 | // WriteLongTerm parses content into facts and merges them into long-term |
| 67 | // memory (existing facts are kept; duplicates reinforce). |
| 68 | func (ms *MemoryStore) WriteLongTerm(content string) error { |
| 69 | return ms.manager.WriteLongTerm(content) |
| 70 | } |
| 71 | |
| 72 | // AppendLongTerm adds new content to long-term memory. |
| 73 | func (ms *MemoryStore) AppendLongTerm(entry string) error { |
no outgoing calls