Files
compass_backoffice/app/agents/runtime.py
2026-06-15 07:51:07 -03:00

13 lines
588 B
Python

"""Framework-native agent runtime facade.
Compass Backoffice must not maintain a forked runtime for MCP, RAG, cache,
telemetry, memory or IC/NOC/GRL behavior. The application imports the runtime
mixin directly from agent_framework_oci so fixes in the framework (for example
MCP cache using args_schema, BusinessContext mapping and tool deduplication) are
picked up by this backend without duplicating code here.
"""
from agent_framework.runtime.agent_runtime import AgentRuntimeMixin, MessageBuilder, RuntimeContext
__all__ = ["AgentRuntimeMixin", "MessageBuilder", "RuntimeContext"]