BeatDebate / src /agents /__init__.py
SulmanK's picture
Remove obsolete test files and refactor agent imports - Deleted unused test files for `test_fix.py` and `test_smart_context.py`. Updated agent imports in `__init__.py` and other files to streamline the codebase and improve maintainability. This cleanup supports ongoing refactoring efforts and enhances the overall structure of the project.
fec9e33
Raw
History Blame Contribute Delete
446 Bytes
"""
Agents Package for BeatDebate Multi-Agent System
Contains all agent implementations for the music recommendation workflow.
"""
from .base_agent import BaseAgent
from .planner.agent import PlannerAgent
from .genre_mood.agent import GenreMoodAgent
from .discovery.agent import DiscoveryAgent
from .judge.agent import JudgeAgent
__all__ = [
"BaseAgent",
"PlannerAgent",
"GenreMoodAgent",
"DiscoveryAgent",
"JudgeAgent",
]