18 lines
338 B
Python
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'
|
|
] |