mirror of
https://github.com/hoshikawa2/compass_backoffice.git
synced 2026-07-09 13:54:20 +00:00
13 lines
588 B
Python
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"]
|