AI governance platform for securing autonomous AI agents with real-time policy enforcement and visibility.
pip install sentinel-aifrom sentinel import secure_agent
@secure_agent(
agent_id="my-agent",
config={
"api_key": "sentinel_key_xxx",
"endpoint": "https://api.sentinel.ai"
}
)
def my_agent():
# Your agent implementation
pass- One-line integration: Secure your AI agents with a single decorator
- Real-time policy enforcement: Block dangerous actions before they happen
- Comprehensive audit logging: Track every action your agents take
- Multi-LLM support: Works with OpenAI, Anthropic, Azure OpenAI, and Google Gemini
- Minimal overhead: <100ms latency for 95% of requests
Install development dependencies:
pip install -e ".[dev]"Run tests:
pytestFormat code:
black .
isort .Lint code:
flake8 sentinel
mypy sentinelMIT