10 lines
No EOL
302 B
Python
10 lines
No EOL
302 B
Python
"""
|
|
Agent Registry Module.
|
|
Provides a central registry system for all available agents.
|
|
Optimized for the standardized task processing pattern.
|
|
"""
|
|
|
|
from .agentBase import AgentBase
|
|
from .agentRegistry import AgentRegistry, getAgentRegistry
|
|
|
|
__all__ = ['AgentBase', 'AgentRegistry', 'getAgentRegistry'] |