Spaces:
Running
Running
""" | |
Enhanced GAIA Agent - Clean Agent Module | |
This module contains only the essential agents for deployment: | |
- GAIAAgent: Main agent with comprehensive AGNO tool integration and multimodal capabilities | |
- OpenSourceMultimodalTools: Open-source multimodal processing capabilities | |
All deprecated agents have been archived for clean deployment. | |
""" | |
from .enhanced_unified_agno_agent import GAIAAgent | |
from .mistral_multimodal_agent import ( | |
OpenSourceMultimodalTools, | |
MISTRAL_AVAILABLE, | |
FASTER_WHISPER_AVAILABLE | |
) | |
__all__ = [ | |
'GAIAAgent', | |
'OpenSourceMultimodalTools', | |
'MISTRAL_AVAILABLE', | |
'FASTER_WHISPER_AVAILABLE' | |
] |