GraphMap and GraphNeighbors expose the knowledge graph as a relational VIEW of the same memory/skill data — the "what connects to this" angle that content recall cannot give. The graph is derived on demand; see knowledge_graph.go.
()
| 122 | // the same memory/skill data — the "what connects to this" angle that content |
| 123 | // recall cannot give. The graph is derived on demand; see knowledge_graph.go. |
| 124 | func (a *memoryPluginAdapter) GraphMap() (string, error) { |
| 125 | return a.cli.graphMapText() |
| 126 | } |
| 127 | |
| 128 | func (a *memoryPluginAdapter) GraphNeighbors(query string) (string, error) { |
| 129 | return a.cli.graphNeighborsText(query) |
nothing calls this directly
no test coverage detected