Beta Feature: Prime Sandboxes are currently in beta with limited usage per account.

Overview

Prime Sandboxes are isolated Docker environments for AI coding and benchmarks. Perfect for LLMs that need to execute code safely. Sandbox Dashboard

Getting Started

Create your first sandbox using the Prime CLI:
prime sandbox create python:3.11-slim
List your sandboxes:
prime sandbox list
Execute commands:
prime sandbox run <sandbox-id> "python --version"

Resource Options

Customize your sandbox resources:
prime sandbox create python:3.11-slim \
  --cpu-cores 2 \
  --memory-gb 4 \
  --disk-size-gb 20
You have access to your usage limits under billing dashboard.

Pricing

Usage-based pricing (charged per hour while running):
  • CPU: $0.05 per core per hour
  • Memory: $0.01 per GB per hour
  • Disk: $0.001 per GB per hour
Example: 1 core, 2GB RAM, 10GB disk = $0.08/hour

Management Commands

# View details
prime sandbox get <sandbox-id>

# Check logs
prime sandbox logs <sandbox-id>

# Delete sandbox
prime sandbox delete <sandbox-id>

Questions? Join our Discord or email contact@primeintellect.ai