forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
32 lines (26 loc) · 1001 Bytes
/
__init__.py
File metadata and controls
32 lines (26 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
"""
Agent Governance - Unified installer and runtime policy enforcement.
Install the full stack:
pip install agent-governance-toolkit[full]
Note: The package was previously published as ``ai-agent-compliance``.
That name is deprecated and will redirect here for 6 months.
Components:
- agent-os-kernel: Governance kernel with policy enforcement
- agentmesh-platform: Zero-trust agent communication (SSL for AI Agents)
- agentmesh-runtime: Runtime supervisor with execution rings
- agent-sre: Site reliability engineering for AI agents
- agentmesh-marketplace: Plugin lifecycle management
- agent-lightning: RL training governance
"""
__version__ = "1.1.0"
# Re-export core components for convenience
try:
from agent_os import StatelessKernel, ExecutionContext # noqa: F401
except ImportError:
pass
try:
from agentmesh import TrustManager # noqa: F401
except ImportError:
pass