| 1 | from typing import List, Optional, TypedDict, Dict |
| 2 | |
| 3 | class AgentState(TypedDict): |
| 4 | master_node: str |
| 5 | in_process_node: str |
| 6 | to_be_processed_nodes: List[str] |
| 7 | in_process_node_dynamic_parts: List[str] |
| 8 | action_url: str |
| 9 | input_variables: Dict[str, str] |