- Python SDK
- TypeScript SDK
Sandbox
smolvm
Connect either Mirage SDK to an existing smolvm microVM.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect either Mirage SDK to an existing smolvm microVM.
smolvm machine create --net --name mirage-box --image my-mirage-image
smolvm machine start --name mirage-box
from mirage.runtime.sandbox.smolvm import SmolvmRuntime
runtime = SmolvmRuntime(captures=["python3"], config={"machine": "mirage-box"})
import { SmolvmRuntime } from '@struktoai/mirage-node'
const runtime = new SmolvmRuntime({
captures: ['python3'],
config: { machine: 'mirage-box' },
})