File size: 480 Bytes
ba68fc1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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"
]