Spaces:
Sleeping
Sleeping
| """Contract layer — Protocol classes only, no implementation.""" | |
| from .agent import AgentProtocol | |
| from .budget import BudgetProtocol | |
| from .env import EnvProtocol | |
| from .logger import LoggerProtocol | |
| from .memory import MemoryProtocol | |
| from .role import RoleProtocol | |
| __all__ = [ | |
| "AgentProtocol", | |
| "BudgetProtocol", | |
| "EnvProtocol", | |
| "LoggerProtocol", | |
| "MemoryProtocol", | |
| "RoleProtocol", | |
| ] | |