Trust, Observability & Runtime Control for AI Agents
RunLog AI records every agent step, enforces policies before risky actions, and replays runs to fix issues—before users are impacted.
See every step. Stop unsafe actions. Replay to fix.
Simple Integration
Add RunLog AI to your existing agents with just a few lines of code.
from runlog import RL
rl = RL(service="support", env="prod")
with rl.run(task="Refund request #123"):
docs = rl.tool("kb.search", query="refund policy")
rl.enforce("retrieval_confidence", min=0.8, evidence=docs)
answer = llm(prompt=compose(docs))
if "refund" in answer.lower():
rl.enforce("require_supervisor_for_refund", amount=250)
rl.tool("payments.refund", amount=250, customer_id="c_42")
Frequently Asked Questions
Everything you need to know about RunLog AI.