MCPcopy Create free account
hub / github.com/diillson/chatcli / GraphMap

Method GraphMap

cli/memory_adapter.go:124–126  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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.
124func (a *memoryPluginAdapter) GraphMap() (string, error) {
125 return a.cli.graphMapText()
126}
127
128func (a *memoryPluginAdapter) GraphNeighbors(query string) (string, error) {
129 return a.cli.graphNeighborsText(query)

Callers

nothing calls this directly

Calls 1

graphMapTextMethod · 0.80

Tested by

no test coverage detected