Spaces:
Sleeping
Sleeping
File size: 520 Bytes
08e2c16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
Agents package for GAIA Agent Evaluator.
This package contains agent implementations and special question handlers:
- gaia_agent: Main intelligent agent with tool integration
- basic_agent: Simple fallback agent
- special_handlers: Handlers for specific question types (reverse text, file analysis, etc.)
"""
from .gaia_agent import GaiaAgent
from .basic_agent import BasicAgent
from .special_handlers import SpecialQuestionHandlers
__all__ = [
'GaiaAgent',
'BasicAgent',
'SpecialQuestionHandlers'
]
|