GetRelevantContext returns memory tailored to conversation hints.
(hints []string)
| 108 | |
| 109 | // GetRelevantContext returns memory tailored to conversation hints. |
| 110 | func (ms *MemoryStore) GetRelevantContext(hints []string) string { |
| 111 | return ms.sanitizeForPrompt(ms.manager.GetRelevantContext(hints)) |
| 112 | } |
| 113 | |
| 114 | // GetMemoryIndex returns the compact, stable memory digest. See |
| 115 | // memory.Manager.GetMemoryIndex. |
no test coverage detected