JoachimVC's picture
Fix: Replace mock answers with real implementations
9ffaba7
raw
history blame contribute delete
310 Bytes
"""
GAIA System package.
This package contains the core modules for the GAIA intelligent assistant.
"""
from src.gaia.agent import Agent
from src.gaia.config import Config
from src.gaia.agent.agent_enhanced import GAIAAgent # Use the enhanced agent implementation
__all__ = ["Agent", "Config", "GAIAAgent"]