Add task tracking tool for long-horizon tasks (#10166)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Xingyao Wang <xingyao@all-hands.dev>
This commit is contained in:
Ryan H. Tran
2025-08-16 20:05:59 +07:00
committed by GitHub
parent 0ec6ed20cb
commit fe486ad1f1
32 changed files with 1017 additions and 39 deletions

View File

@@ -11,6 +11,7 @@ from openhands.events.action.agent import (
CondensationAction,
CondensationRequestAction,
RecallAction,
TaskTrackingAction,
)
from openhands.events.action.browse import BrowseInteractiveAction, BrowseURLAction
from openhands.events.action.commands import (
@@ -46,6 +47,7 @@ actions = (
CondensationAction,
CondensationRequestAction,
MCPAction,
TaskTrackingAction,
)
ACTION_TYPE_TO_CLASS = {action_class.action: action_class for action_class in actions} # type: ignore[attr-defined]