MCPcopy Create free account
hub / github.com/Ishabdullah/Codey-v2 / search

Method search

core/memory_v2.py:593–595  ·  view source on GitHub ↗

Semantic search over long-term memory.

(self, query: str, limit: int = 5)

Source from the content-addressed store, hash-verified

591 self.episodic.log(action, details)
592
593 def search(self, query: str, limit: int = 5) -> List[Dict]:
594 """Semantic search over long-term memory."""
595 return self.longterm.search(query, limit)
596
597 def get_working_content(self) -> Dict[str, str]:
598 """Return all {path: content} pairs from working memory."""

Callers 15

_run_with_planFunction · 0.45
extract_ratingFunction · 0.45
_has_tool_callFunction · 0.45
get_repo_mapFunction · 0.45
_extract_moduleMethod · 0.45
_extract_lineMethod · 0.45
parse_tool_callFunction · 0.45
_detect_peer_delegationFunction · 0.45
_auto_apply_peer_codeFunction · 0.45
run_agentFunction · 0.45
searchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected