MCPcopy Create free account
hub / github.com/LLMQuant/quant-mind / children_of

Method children_of

quantmind/knowledge/_tree.py:62–64  ·  view source on GitHub ↗
(self, node_id: UUID)

Source from the content-addressed store, hash-verified

60 def root(self) -> TreeNode:
61 return self.nodes[self.root_node_id]
62
63 def children_of(self, node_id: UUID) -> list[TreeNode]:
64 node = self.nodes[node_id]
65 return [self.nodes[c] for c in node.children_ids]
66
67 def walk_dfs(self) -> Iterator[TreeNode]:

Callers 1

test_children_ofMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_children_ofMethod · 0.64