Add dynamic analyst runtime updates and deployment guides
This commit is contained in:
@@ -13,6 +13,9 @@ class RuntimeRegistry:
|
||||
def get(self, agent_id: str) -> Optional["AgentRuntimeState"]:
|
||||
return self._states.get(agent_id)
|
||||
|
||||
def unregister(self, agent_id: str) -> Optional["AgentRuntimeState"]:
|
||||
return self._states.pop(agent_id, None)
|
||||
|
||||
def list_agents(self) -> list[str]:
|
||||
return list(self._states.keys())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user