MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / get_info

Method get_info

src/memory/context.py:700–709  ·  view source on GitHub ↗

Get memory info by name Args: memory_name: Memory name Returns: MemoryConfig: Memory info or None if not found

(self, memory_name: str)

Source from the content-addressed store, hash-verified

698 return memory_config.instance if memory_config.instance is not None else None
699
700 async def get_info(self, memory_name: str) -> Optional[MemoryConfig]:
701 """Get memory info by name
702
703 Args:
704 memory_name: Memory name
705
706 Returns:
707 MemoryConfig: Memory info or None if not found
708 """
709 return self._memory_configs.get(memory_name)
710
711 async def list(self) -> List[str]:
712 """Get list of registered memory systems

Callers 2

save_contractMethod · 0.95
get_stateMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected