From cfcc26ac8495a84e0fdd16b593085528b09d35f6 Mon Sep 17 00:00:00 2001 From: goulustis Date: Wed, 10 Dec 2025 14:30:05 +0800 Subject: [PATCH] delete subgraph state --- lang_agent/graphs/graph_states.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lang_agent/graphs/graph_states.py b/lang_agent/graphs/graph_states.py index 6272407..4ff3963 100644 --- a/lang_agent/graphs/graph_states.py +++ b/lang_agent/graphs/graph_states.py @@ -7,8 +7,6 @@ class State(TypedDict): Dict[str, Dict[str, str|int]]] messages: List[SystemMessage | HumanMessage] decision: str - subgraph_states: Dict[str, Any] # NOTE: Naively assuming subgraphs - # won't be so complicated class ChattyToolState(TypedDict):