Spaces:
Build error
Build error
Refactor agent structure by modularizing agent implementations into separate directories for web, data analysis, and media agents. Remove legacy code from agents.py, prompts.py, and tools.py, enhancing maintainability. Update main_v2.py to reflect new import paths and agent initialization. Add new tools for enhanced functionality, including web searching and data extraction. Update requirements.txt to include necessary dependencies for new tools.
837e221
unverified
from .web_agent import create_web_agent | |
from .data_agent import create_data_agent | |
from .media_agent import create_media_agent | |
__all__ = [ | |
'create_web_agent', | |
'create_data_agent', | |
'create_media_agent' | |
] |