RUNTIME CONTROL PLANE

Govern AI agents
at runtime

A control plane that sits between your agents and the real world — deciding what runs, recording every step, and showing you what happened, why, and what it cost.

[✓]free tier[✓]no credit card[✓]python sdk
control-plane.log
DENY
[+]run starteduser: alice
stepMODEL_CALL
modelgpt-4o
this call$3.40
───────────────────────────────
[!]budget checkuser daily limit
spent today$48.20 → $51.60
daily budget$50.00
───────────────────────────────
[x]DECISIONDENY
reasonUSER_DAILY_BUDGET_EXCEEDED
$50.00

drag to set alice's limit — the control plane decides in real time

// THE REQUEST PATH

Every action passes through the control plane

Not a pile of features — a pipeline. A single agent request is intercepted, validated at each checkpoint, and either allowed through or stopped cold.

REQUEST INMODEL_CALL · gpt-4o · user: alice

01Runtime Guardrails

ENABLED

The kill switch and configured limits are evaluated first. Anything outside your boundaries is denied before it ever reaches a model or tool.

kill_switch: ARMED → if tripped: DENY

02Concurrency Control

ENABLED

Caps how many runs execute at once. Prevents resource exhaustion and keeps capacity predictable under load.

active_runs: 7/10 → ALLOW

03Per-User Limits

ENABLED

Each SDK user carries its own daily budget. Users move NORMAL → WARNING → BLOCKED as they approach the line.

user: alice → state: NORMAL

04Cost & Budget Check

ENABLED

Token cost is computed per call and checked against workspace and per-user daily budgets before the action proceeds.

spent: $48.20 + $3.40 ≤ budget?

05Complete Observability

ENABLED

Every model call, tool use, and decision is recorded with full context — what ran, why it was allowed, and what it cost.

step logged → trace_id: alice-0x9f
ALLOWstep executed → reaches model & tools

Dashboard & Analytics

Every checkpoint above surfaces here — runs in real time, step timelines, usage by model and user, and blocked-user state. The whole path, observable.

runs · steps · cost
by user · by model · by day
// HOW IT WORKS

A gateway on the wire

The control plane sits inline between your agent and everything it touches. Every request is inspected before it's forwarded — or dropped.

AGENTorigin
{
  "user":   "alice",
  "model":  "gpt-4o",
  "action": "model_call"
}
CONTROL_PLANEproxy gateway
eval guardrails[✓]
eval concurrency[✓]
eval budget[✓]
───────────────────
DECISIONALLOW

click the kill switch ↑

REAL WORLDegress
models[✓]
tools[✓]
apis[✓]

Is this allowed?

Guardrails evaluate in real time. Actions outside your configured limits are denied automatically, before they run.

What happened?

Every action is logged with full context. Trace decisions, debug issues, and audit agent behavior end to end.

What did it cost?

Track cost across models, tools, and APIs. Set budgets, watch spend, and stop runaway charges before they land.

// INTEGRATE

Wrap your agent in three lines

Drop the SDK around your existing code. Every model call and tool use is governed and recorded — no rewrite required.

agent.py
from pikarc import AsyncPikarc, PikarcBlockedError

guard = AsyncPikarc(
    api_key="lg_xxxx_yyyy",
    base_url="https://api.pikarc.dev",
)

try:
    async with guard.run(user_id="alice") as run:
        response = await run.model_call(
            fn=lambda: openai.chat.completions.create(
                model="gpt-4o",
                messages=[{"role": "user", "content": query}],
            ),
            model="gpt-4o",
            token_extractor=lambda r: (
                r.usage.prompt_tokens,
                r.usage.completion_tokens,
            ),
        )

        result = await run.tool_call(
            fn=lambda: search_database(query),
            tool_name="search_database",
        )

except PikarcBlockedError as e:
    print(f"Blocked: {e.reason}")

Automatic Enforcement

Budget, concurrency, and kill switch checks on every call

Full Cost Tracking

Token usage and cost calculated automatically per step

Complete Trace

Every step recorded with decisions, tokens, and duration

// USE CASES

Built for production AI

Autonomous agents or customer assistants — keep control without slowing down.

AGENTS

Autonomous AI Agents

Let agents act independently while you keep control over spending and execution.

[✓]Kill switch for emergency stops
[✓]Daily budget limits per agent user
[✓]Track every model call and tool use
CUSTOMER

Customer-Facing AI

Deploy AI assistants that talk to customers while keeping costs under control.

[✓]Per-user daily spending limits
[✓]Cost tracking per conversation
[✓]Block agents that exceed budgets
MULTI-AGENT

Multi-Agent Systems

Run many agents in parallel with resource controls and full visibility.

[✓]Concurrent run limits
[✓]Per-agent cost analytics
[✓]Full run timeline for debugging
TEAMS

Team AI Workflows

Give your team AI tools while maintaining budget governance across users.

[✓]Per-user budget enforcement
[✓]Usage analytics by user and model
[✓]Workspace-wide daily budget caps
// PRICING

Simple, transparent pricing

Every plan includes the full governance and observability core. Scale up when you need more runs, retention, and controls.

Basic

Free

Solo devs / Prototypes

KEY FEATURE

Perfect for getting started

  • [✓]1,000 runs/month
  • [✓]3 concurrent runs
  • [✓]1-day retention
  • [✓]Run tracking & cost analytics
  • [✓]Email support
Get Started

Pro

$25+ Usage

Growing AI Startups

KEY FEATURE

Per-user daily budgets

  • [✓]50,000 runs/month
  • [✓]Configurable concurrent limits
  • [✓]14-day retention
  • [✓]Per-user daily budgets
  • [✓]Run tracking & cost analytics
  • [✓]Priority email support
Get Started

Scale

$79+ Usage

Production-ready Agents

KEY FEATURE

Kill switch

  • [✓]Unlimited runs
  • [✓]Configurable concurrent limits
  • [✓]90-day retention
  • [✓]Per-user daily budgets
  • [✓]Kill switch
  • [✓]Run tracking & cost analytics
  • [✓]Priority email support
Get Started

Enterprise

Custom

Large Org Governance

KEY FEATURE

SSO, audit logs & dedicated support

  • [✓]Everything in Scale
  • [✓]Custom retention & run limits
  • [✓]SSO / SAML
  • [✓]Audit log export
  • [✓]Dedicated support & SLA
  • [✓]Custom deployment options
Contact Sales

// all plans include core governance and observability

// GET STARTED

Start governing your AI agents today

Budget enforcement, cost tracking, and full observability from the first request.

[✓]free tier[✓]no credit card[✓]python sdk