Spaces:
Sleeping
Sleeping
""" | |
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' | |
] | |