Skip to content

Commit

Permalink
todo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Hk669 committed Dec 5, 2024
1 parent 5422ac4 commit 8f717da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogen/agentchat/contrib/reasoning_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, content: str, parent: Optional["ThinkNode"] = None) -> None:
self.parent = parent
self.depth = self.parent.depth + 1 if parent else 0
self.children = []
self.visits = 0
self.visits = 0 # TODO: remove this line if not used.
if self.parent:
self.parent.children.append(self)

Expand Down

0 comments on commit 8f717da

Please sign in to comment.