Automation (Phase 3)Autopilot Mode

Autopilot Mode

Autopilot is a Phase 3 feature, coming soon.

Set a workload and a budget — Pulserun handles everything else.

How It Works

  1. Define your workload (GPU type, template, startup script)
  2. Set a budget (daily/weekly/monthly cap)
  3. Pulserun automatically:
    • Finds the cheapest available GPU
    • Launches on the optimal provider
    • Migrates to cheaper options when prices drop
    • Recovers from spot interruptions
    • Stops when budget is reached

Example

curl -X POST https://api.pulserun.dev/v1/instances \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "gpu": "a100_80gb",
    "template": "pytorch",
    "auto_migrate": true,
    "auto_spot_recovery": true,
    "budget_limit": 20.00,
    "spot": true
  }'

This launches on the cheapest spot A100, auto-recovers if interrupted, migrates on price drops, and stops at $20.