Sentinel SIM API

The governed execution layer for AI agents. Route any tool call through Sentinel with full auth, policy enforcement, budget control, and observability.

Base URL

https://web-production-90bb3.up.railway.app

Install the SDK

# Python
pip install sentinel-sim

# TypeScript / Node.js
npm install sentinel-sim

Quick start

from sentinel import Sentinel

client = Sentinel(
    api_key="sk_sentinel_...",
    base_url="https://web-production-90bb3.up.railway.app"
)

result = client.execute(
    "chat", "openai",
    {"messages": [{"role": "user", "content": "hello"}],
     "max_tokens": 100, "model": "gpt-4o-mini"},
    provider_credentials={"openai": "sk-proj-YOUR_KEY"}
)
print(result["result"]["data"]["content"])