Sentinel SIM API
The governed execution and orchestration layer for AI agents. Route any tool call through Sentinel with full auth, policy enforcement, budget control, orchestration, and observability.
Base URL
https://api.sentinel-sim.com
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://api.sentinel-sim.com"
)
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"])