Import the entire graph from a serialized dictionary. Args: data: A dictionary containing all nodes and edges to be loaded.
(self, data: dict[str, Any])
| 266 | |
| 267 | @abstractmethod |
| 268 | def import_graph(self, data: dict[str, Any]) -> None: |
| 269 | """ |
| 270 | Import the entire graph from a serialized dictionary. |
| 271 | |
| 272 | Args: |
| 273 | data: A dictionary containing all nodes and edges to be loaded. |
| 274 | """ |
| 275 | |
| 276 | @abstractmethod |
| 277 | def get_all_memory_items( |
no outgoing calls
no test coverage detected