GAIA Agent Deployment
Deploy Complete Enhanced GAIA Agent with Phase 1-6 Improvements
9a6a4dc
raw
history blame contribute delete
643 Bytes
"""
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'
]