LeadGen/backend/agents/__init__.py
2025-06-06 21:22:18 +05:30

18 lines
338 B
Python

from .agent import (
task_picker,
location_finder,
place_researcher,
data_processor,
# recommendations_expert,
# data_analyzer
)
# Export all agent instances
__all__ = [
'task_picker',
'location_finder',
'place_researcher',
# 'recommendations_expert',
# 'data_analyzer',
'data_processor'
]