"""Application services for Beaver.""" __all__ = ["AgentService", "MemoryService"] def __getattr__(name: str): if name == "AgentService": from .agent_service import AgentService return AgentService if name == "MemoryService": from .memory_service import MemoryService return MemoryService raise AttributeError(name)