
Sub-Millisekunden-VM-Sandboxen für KI-Agenten mittels Copy-on-Write-Forking
Sub-Millisekunden-VM-Sandboxes für KI-Agenten mittels Copy-on-Write Forking

curl -X POST https://api.zeroboot.dev/v1/exec \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer zb_demo_hn2026' \
-d '{"code":"import numpy as np; print(np.random.rand(3))"}'
Jede Sandbox ist eine echte KVM-VM mit hardwaregestützter Speicherisolation.
Firecracker-Snapshot ──► mmap(MAP_PRIVATE) ──► KVM-VM + wiederhergestellter CPU-Zustand
(copy-on-write) (~0.8ms)
Python — sdk/python
from zeroboot import Sandbox
sb = Sandbox("zb_live_your_key")
result = sb.run("print(1 + 1)")
TypeScript — sdk/node
import { Sandbox } from "@zeroboot/sdk";
const result = await new Sandbox("zb_live_your_key").run("console.log(1+1)");
Funktionsfähiger Prototyp. Die Fork-Primitive, Benchmarks und API sind echt, aber noch nicht produktionsreif. Eröffnen Sie ein Issue, wenn Sie Interesse haben.
Zeroboot ist Open Source. Betreiben Sie es selbst auf einem beliebigen Linux-Rechner mit KVM oder nutzen Sie die verwaltete API:
curl -X POST https://api.zeroboot.dev/v1/exec \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer zb_demo_hn2026' \
-d '{"code":"import numpy as np; print(np.random.rand(3))"}'
Wir bauen den verwalteten Dienst für Teams, die keine eigene Infrastruktur betreiben möchten. Melden Sie sich für den frühen Zugang an: https://tally.so/r/aQGkpb
| Metrik | Zeroboot | E2B | microsandbox | Daytona |
|---|
| Spawn-Latenz p50 | 0.79ms | ~150ms | ~200ms | ~27ms |
| Spawn-Latenz p99 | 1.74ms | ~300ms | ~400ms | ~90ms |
| Speicher pro Sandbox | ~265KB | ~128MB | ~50MB | ~50MB |
| Fork + exec (Python) | ~8ms | - | - | - |
| 1000 gleichzeitige Forks | 815ms | - | - | - |