Spaces:
Running
Running
File size: 643 Bytes
9a6a4dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""
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'
] |