File size: 474 Bytes
af1432a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""
Agents Package for Code Implementation Workflow
This package contains specialized agents for different aspects of code implementation:
- CodeImplementationAgent: Handles file-by-file code generation
- ConciseMemoryAgent: Manages memory optimization and consistency across phases
"""
from .code_implementation_agent import CodeImplementationAgent
from .memory_agent_concise import ConciseMemoryAgent as MemoryAgent
__all__ = ["CodeImplementationAgent", "MemoryAgent"]
|