19 lines
458 B
Python
19 lines
458 B
Python
# -*- coding: utf-8 -*-
|
|
"""Team module for multi-agent orchestration.
|
|
|
|
Provides inter-agent communication, task delegation, and coordination
|
|
for subagent spawning and lifecycle management.
|
|
"""
|
|
|
|
from .messenger import AgentMessenger
|
|
from .task_delegator import TaskDelegator
|
|
from .team_coordinator import TeamCoordinator
|
|
from .registry import AgentRegistry
|
|
|
|
__all__ = [
|
|
"AgentMessenger",
|
|
"TaskDelegator",
|
|
"TeamCoordinator",
|
|
"AgentRegistry",
|
|
]
|