File size: 596 Bytes
c922f8b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
Agent module for GAIA implementation.
Contains the core agent architecture and configuration.
"""

# Import directly from the new structure
from src.gaia.agent.agent import GAIAAgent
from src.gaia.agent.config import (
    get_logging_config,
    get_model_config,
    get_tool_config,
    get_memory_config,
    get_agent_config
)

# For backward compatibility with tests
Agent = GAIAAgent

__all__ = [
    'GAIAAgent',
    'Agent',  # Added for backward compatibility
    'get_logging_config',
    'get_model_config',
    'get_tool_config',
    'get_memory_config',
    'get_agent_config'
]