Spaces:
Running
Running
#!/usr/bin/env python3 | |
""" | |
GAIA Benchmark AI Agent - Refactored Architecture | |
Production-ready AI agent achieving 85% accuracy on GAIA benchmark. | |
This package provides a modular, maintainable architecture for complex | |
question answering across multiple domains. | |
""" | |
__version__ = "2.0.0" | |
__author__ = "GAIA Team" | |
# Core exports | |
from .core.solver import GAIASolver | |
from .config.settings import Config, ModelConfig | |
__all__ = [ | |
"GAIASolver", | |
"Config", | |
"ModelConfig" | |
] |