Files
beaver_project/app-instance/backend/beaver/services/__init__.py

7 lines
167 B
Python

"""Application services for Beaver."""
from .agent_service import AgentService
from .memory_service import MemoryService
__all__ = ["AgentService", "MemoryService"]