Skip to content

Agent manager

Agents manager.

AgentManager

Bases: ComponentManagerBase

The AgentManager class, which is used to manage the agents.

Source code in agentuniverse/agent/agent_manager.py
Python
@singleton
class AgentManager(ComponentManagerBase):
    """The AgentManager class, which is used to manage the agents."""

    def __init__(self):
        """Initialize the Agent manager."""
        super().__init__(ComponentEnum.AGENT)

__init__()

Initialize the Agent manager.

Source code in agentuniverse/agent/agent_manager.py
Python
def __init__(self):
    """Initialize the Agent manager."""
    super().__init__(ComponentEnum.AGENT)