Remove recovery_attempted attribute from AgentState model to streamline state management.

This commit is contained in:
Magnus Müller
2025-09-04 17:33:41 -07:00
parent c54b4efab5
commit 01acf052cd

View File

@@ -65,7 +65,6 @@ class AgentState(BaseModel):
stopped: bool = False
session_initialized: bool = False # Track if session events have been dispatched
follow_up_task: bool = False # Track if the agent is a follow-up task
recovery_attempted: bool = False # Track if final recovery has been attempted
message_manager_state: MessageManagerState = Field(default_factory=MessageManagerState)
file_system_state: FileSystemState | None = None