gateway/modules/workflow/workflowAgentsRegistry.py
2025-05-17 11:38:38 +02:00

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']