Skip to content

Planner manager

Planner Management Class.

PlannerManager

Bases: ComponentManagerBase

The PlannerManager class, which is used to manage the planners.

Source code in agentuniverse/agent/plan/planner/planner_manager.py
Python
@singleton
class PlannerManager(ComponentManagerBase):
    """The PlannerManager class, which is used to manage the planners."""

    def __init__(self):
        """Initialize the PlannerManager."""
        super().__init__(ComponentEnum.PLANNER)

__init__()

Initialize the PlannerManager.

Source code in agentuniverse/agent/plan/planner/planner_manager.py
Python
def __init__(self):
    """Initialize the PlannerManager."""
    super().__init__(ComponentEnum.PLANNER)