feat(graph): Extend AgentState with checklist, current_step, and vfs

This commit is contained in:
Yunxiao Xu
2026-02-23 04:34:28 -08:00
parent 45fe122580
commit 8957e93f3d
2 changed files with 25 additions and 0 deletions

View File

@@ -34,3 +34,13 @@ class AgentState(AS):
# Number of execution attempts
iterations: int
# --- DeepAgents Extensions ---
# High-level plan/checklist: List of Task objects (dicts)
checklist: List[Dict[str, Any]]
# Current active step in the checklist
current_step: int
# Virtual File System (VFS): Map of filenames to content/metadata
vfs: Dict[str, Any]