Skip to main content

smol — Python SDK

Embed isolated microVM sandboxes directly in your Python code. Same API locally (embedded engine, no server) or against the smolfleet cloud — the backend is chosen via ConnectOptions / SMOL_CLOUD_TOKEN. Mirrors the Node SDK.

Supported platforms (native local transport): macOS Apple Silicon, and Linux x64/arm64 with glibc ≥ 2.34 (RHEL 9, Ubuntu 22.04+, Debian 12, Amazon Linux 2023; the wheel is tagged manylinux_2_34). The cloud transport works anywhere the wheel installs. Not yet published: macOS Intel, and glibc < 2.34.

from smol import Machine, MachineConfig, ResourceSpec

# Local — no server. The SDK is in your process; the VMM is a separate,
# seccomp/Landlock-confined helper.
with Machine.create(MachineConfig(resources=ResourceSpec(cpus=2, memory_mb=1024, network=True))) as m:
    res = m.run("python:3.12", ["python", "-c", "print(2 ** 10)"])
    res.assert_success()
    print(res.stdout)            # 1024
    m.write_file("/tmp/in.txt", "hi")
    print(m.read_file("/tmp/in.txt").decode())

# Branch a prepared machine: a CoW clone of its RAM and disks, typically under
# 200ms, so a warm environment is reused instead of rebuilt. Pass network=True
# whenever an image has to be pulled.
golden = Machine.create(MachineConfig(image="alpine", network=True, forkable=True))
branch = golden.branch("b1")

# Cloud (smolfleet) — create() waits until it is ready for work.
from smol import ConnectOptions
m = Machine.create(
    MachineConfig(image="alpine:3.20"),
    ConnectOptions(target="cloud"),  # uses SMOL_CLOUD_TOKEN
)
try:
    print(m.exec(["echo", "ready for work"]).stdout)
finally:
    m.delete()

Async: AsyncMachine (non-blocking)

Machine is synchronous — each call blocks the calling thread. When you're driving many machines from one event loop (a fleet of disposable workers), use AsyncMachine: the same API, but every I/O method is a coroutine that runs off the loop, so launches and calls overlap instead of serializing.

import asyncio
from smol import AsyncMachine, MachineConfig, ConnectOptions, PortSpec

async def main():
    cfg = MachineConfig(image="alpine:3.20", ports=[PortSpec(host=8080, guest=8080)])
    conn = ConnectOptions(target="cloud")  # or SMOL_CLOUD_TOKEN
    # Launch a fleet concurrently — none blocks the loop.
    machines = await asyncio.gather(*(AsyncMachine.create(cfg, conn) for _ in range(8)))
    try:
        await asyncio.gather(*(m.wait_until_ready() for m in machines))
        # Reach a service inside a vm via the authed connect bridge (no tunnel):
        health = await machines[0].request(8080, "healthz")
    finally:
        await asyncio.gather(*(m.delete() for m in machines))

asyncio.run(main())

Every Machine method has an awaitable counterpart on AsyncMachine (create/connect/exec/wait_until_ready/request/fork/…), plus async with for auto-delete. endpoint(port) stays synchronous — it only builds a URL and does no I/O.

Fused multi-policy rollouts

RolloutClient is the thin generation boundary for TRL, Unsloth, and custom RL loops. The node keeps one vLLM engine hot, verifies immutable LoRA versions, and submits cross-policy cohorts concurrently so vLLM can continuously batch them.

from smol import RolloutClient

rollouts = RolloutClient("http://127.0.0.1:8080/api/v1", "qwen")
rollouts.ensure_vllm_executor(
    endpoint="http://127.0.0.1:8000",
    adapter_root="/var/lib/smol/adapters",
    fallback_pool="isolated-rollouts",
)
rollouts.publish_policy("experiment-a", "step-40", "/var/lib/smol/adapters/a-40")
result = rollouts.generate(
    idempotency_key="experiment-a-step-40-batch-7",
    policy="experiment-a",
    prompts=[[1, 2, 3]],
    max_tokens=64,
    temperature=0.9,
    logprobs=1,
)

Inside a forked rollout worker, no configuration is required: RolloutClient() discovers its authenticated node assignment from /etc/smolvm/fork-env and automatically groups workers from the same fork batch into a bounded cohort. Pass auto_fork_cohort=False only when the application already supplies an explicit cohort_id, cohort_size, and cohort_max_wait_ms.

Optional framework adapters are explicit imports, so the base SDK remains free of PyTorch, PEFT, Transformers, Unsloth, and vLLM dependencies:

from smol.integrations import (
    UnslothVllmExecutor,
    add_transformers_forkpoint,
    publish_peft_adapter,
)

The vLLM backend must bind to loopback, enable runtime LoRA updates, and reserve one spare CPU LoRA slot so a new version can load before the old version drains.

NeMo Gym sandbox provider

Install the optional integration and select the same smol provider for local SmolVM or Smol Cloud:

pip install 'smolmachines[nemo-gym]'
sandbox:
  smol:
    target: local                 # or cloud; cloud reuses `smol auth login`
    checkpoints:
      ghcr.io/acme/swe:ready:
        machine: swe-golden       # running MachineConfig(forkable=True) machine
        ports: [8000]
        resources:                # describe the prepared golden's capacity
          cpu: 4
          memory_mib: 8192
          disk_gib: 20
        provider_options:         # describe its inherited egress policy
          allow_hosts: [api.example.com]
    fork_batch_window_ms: 2        # coalesce concurrent episode creates
    fork_batch_size: 32
  default_metadata:
    sandbox-api: smol

NeMo Gym discovers the provider through its standard nemo_gym.sandbox_providers entry point. A normal image creates a fresh microVM. An exact image match in checkpoints instead creates every episode as a live RAM/disk copy-on-write fork of that prepared machine, so repositories, dependencies, services, and caches can already be running when the agent takes its first action. The provider implements exec, files, resource limits, scoped egress, declared service ports, entrypoint overrides, TTL cleanup, and the same configuration for local and cloud targets. Handles serialize without credentials and reconnect through the receiving SDK session, as required by DeepSWE's agent/verifier lifecycle. Cloud checkpoint episodes with a TTL use Smol Cloud's durable lease controller, so they are reclaimed even if the NeMo Gym process exits unexpectedly.

Checkpoint forks inherit the golden's resource shape, network policy, and running workload. Declare those inherited properties in the checkpoint mapping. A task's resource request may be smaller than the declared capacity, while its network policy, entrypoint, and ports must match exactly; incompatible requests fail instead of silently running with different isolation. NeMo Gym's standard sandbox provider contract supports episode-from-golden forks.

To branch an arbitrary live trajectory state, create that source as branchable and call the Smol provider's extension at the decision point:

from nemo_gym.sandbox.providers.base import SandboxSpec
from smol.nemo_gym import SmolProvider

provider = SmolProvider(target="local")  # or target="cloud"
checkpoint = await provider.create(
    SandboxSpec(
        image="ghcr.io/acme/swe:ready",
        provider_options={"branchable": True},
    )
)
await provider.exec(checkpoint, "./agent-step-1")
await provider.exec(checkpoint, "./agent-step-2")

branches = await provider.branch(checkpoint, count=16, name_prefix="candidate")

The first fan-out waits for active commands and freezes the source at that exact RAM/filesystem/process state. Every returned sandbox is an independent COW leaf; the frozen source may create more siblings from the same state but cannot execute more commands. Close the branches before the source. A configured checkpoint fork is already a leaf, so it cannot request another live branch until SmolVM supports nested fork generations.

Harbor environment provider

Run Harbor or Terminal-Bench trials as isolated copy-on-write SmolVM forks:

pip install 'smolmachines[harbor]'

harbor run \
  --dataset terminal-bench@2.0 \
  --agent oracle \
  --env smol.harbor:SmolEnvironment \
  --n-concurrent 16

The provider uses Harbor's standard custom-environment interface and works with the same SDK configuration locally or on Smol Cloud. By default, the first trial for each distinct environment creates a warm checkpoint from its published docker_image; concurrent and later trials fork clean RAM/disk COW clones from that checkpoint. Set --environment-kwarg auto_checkpoint=false for cold one-machine-per-trial behavior.

To use an environment prepared before the Harbor job, map its image reference or Harbor environment hash to the running checkpoint:

environment:
  import_path: smol.harbor:SmolEnvironment
  kwargs:
    target: cloud
    checkpoints:
      ghcr.io/acme/swe:ready:
        machine: mach-prepared-swe
        resources:
          cpus: 4
          memory_mb: 8192
          storage_mb: 20480
        network_mode: public

Checkpoint forks preserve initialized process and filesystem state rather than merely reusing image layers. The initial implementation supports Linux single-container tasks with a published docker_image; Docker Compose and Dockerfile-only tasks fail clearly instead of silently changing semantics.

Architecture

  • Pure-Python layer (python/smol): Machine, transports, types, errors — zero third-party deps (the cloud transport uses only urllib).
  • Native core (src/lib.rs, crate smol-py): a pyo3 extension that drives the smolvm engine for the local path — the Python analogue of the smol-node NAPI crate. The local API is synchronous (the engine blocks). The extension is in your process; the VMM is not — it runs as a separate smol-vmm helper, seccomp- and Landlock-confined on Linux.
  • Cloud transport: a REST client to smolfleet /v1 whose request/response shapes match smolfleet's OpenAPI contract (Bearer smk_…).

Disposable workers: wait for ready, then connect (cloud)

Launching a machine as a disposable agent runtime has two easy-to-miss steps; both are first-class here.

Machine.create() already waits for the machine to be ready — not merely started. state == "started" means the VM process launched; the guest is still booting and is not usable yet. Acting on started is the classic teardown race (works on a slow cold start, times out on a warm one). Gate on the unambiguous signal:

m = Machine.create(
    MachineConfig(image="alpine:3.20", ports=[PortSpec(host=8080, guest=8080)]),
    ConnectOptions(target="cloud"),
)
try:
    # create() already waited: the guest agent is reachable and the published
    # port is accepting connections.
    # Reach a service INSIDE the vm through the authenticated connect bridge —
    # no Cloudflare/localhost.run tunnel, no public exposure, no egress allow-list.
    # Have the worker LISTEN on a published port and connect *inbound*:
    print(m.request(8080, "healthz").decode())     # authed HTTP to the guest port
    ep = m.endpoint(8080, "/socket")               # or build a ws:// url for your ws client
    # websocket.connect(ep.ws_url, additional_headers=ep.headers)
finally:
    m.delete()

# Machine.connect() intentionally does not wait for readiness:
existing = Machine.connect(machine_id, ConnectOptions(target="cloud"))
existing.wait_until_ready()

API

  • Machine (sync) / AsyncMachine (awaitable, non-blocking) — identical surface; see the async example above.
  • RolloutClient — publish versioned LoRAs and generate single- or multi-policy cohorts.
  • Machine.create(config=None, conn=None) — create and start a machine; cloud waits for ready is True before returning.
  • Machine.connect(machine_id, conn=None) — attach without waiting; call wait_until_ready() before use.
  • machine.exec(command, opts=None) / machine.run(image, command, opts=None)ExecResult
  • machine.read_file(path)bytes / machine.write_file(path, data, mode=None)
  • machine.ready() / machine.ready_at() / machine.wait_until_ready(timeout_s=120, interval_s=1) (cloud)
  • machine.endpoint(port, path=None)PortEndpoint / machine.request(port, path=None, method="GET", data=None)bytes (cloud connect bridge)
  • machine.pull_image(image) / machine.list_images() (local)
  • machine.stop() / machine.delete() / machine.state()
  • Use it as a context manager to auto-delete() on exit.
  • Errors are typed: SmolError (with .code), ExecutionError, NotSupportedError, InvalidConfigError.

ExecResult has .exit_code, .stdout, .stderr, .success, .output, and .assert_success().

Install / build from source

The cloud path is pure Python. The local path needs the native extension, which links libkrun from the sibling smolvm repo (three levels up).

python -m venv .venv && . .venv/bin/activate
pip install maturin
# Build + install the native extension (points at the repo's bundled libkrun):
LIBKRUN_BUNDLE=../../../lib maturin develop

To boot local microVMs the engine needs a code-signed boot helper carrying the macOS com.apple.security.hypervisor entitlement (the Python process itself does not). Point it at one (and the libkrun dir):

SMOLVM_BOOT_BINARY=../../../target/release/smolvm \
SMOLVM_LIB_DIR=../../../lib \
python your_script.py

On Linux the host needs /dev/kvm.

Tests

python tests/test_unit.py        # error parsing + path encoding (no VM/network)
python tests/test_cloud_mock.py  # cloud transport vs a mock /v1 (no VM/network)
python tests/test_async_mock.py  # AsyncMachine vs a mock /v1 (concurrency, no VM/network)
# Local VM boot (needs the native build + the env above):
SMOLVM_BOOT_BINARY= SMOLVM_LIB_DIR= .venv/bin/python tests/test_local_e2e.py

License

Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

smolmachines-1.13.1-cp39-abi3-manylinux_2_34_x86_64.whl (56.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ x86-64

smolmachines-1.13.1-cp39-abi3-manylinux_2_34_aarch64.whl (55.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ ARM64

smolmachines-1.13.1-cp39-abi3-macosx_11_0_arm64.whl (45.4 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

Details for the file smolmachines-1.13.1-cp39-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for smolmachines-1.13.1-cp39-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1241ffae6768098d7e719e8cffb34b1b5056d047812907ef6e482a48a5258d46
MD5 1efaa26ef5583aac44f64138a454a21a
BLAKE2b-256 a3d52ea8044d8aec51d47afbe3d9bba01406a234016b33b762bcba3e838fd62c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smolmachines-1.13.1-cp39-abi3-manylinux_2_34_x86_64.whl:

Publisher: release.yml on smol-machines/smol

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file smolmachines-1.13.1-cp39-abi3-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for smolmachines-1.13.1-cp39-abi3-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 eb96d6e899e8f7a0fa480d1eccee16db158ae7d0e79920f5994ad486d4c6cfa3
MD5 550e791b8f4ae71c35e23ee1fe4d36d0
BLAKE2b-256 bf0fdd00e9ad5d99420bc6a882c7f15e4929f7683ceaaa5ca2c9dbd6bfce6a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for smolmachines-1.13.1-cp39-abi3-manylinux_2_34_aarch64.whl:

Publisher: release.yml on smol-machines/smol

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file smolmachines-1.13.1-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for smolmachines-1.13.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fae862bbb9b65bca3b4b250d0ee83a68205b4eef7a8e563e0b1f89a6d05115f
MD5 82056fe63e18d5608a2940bb8500e8fa
BLAKE2b-256 9d2325aac2de19b9b27f55739cf21c22c41d6b9eede060d6ae4b0d4de6e986d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for smolmachines-1.13.1-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on smol-machines/smol

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.15.0

3 files

1.14.3

3 files

1.14.2

3 files

1.14.1

3 files

1.14.0

3 files

This release

1.13.1 This release

3 files

1.12.0

3 files

1.11.1

3 files

1.11.0

3 files

1.10.1

3 files

1.10.0

3 files

1.9.1

3 files

1.9.0

3 files

1.8.3

3 files

1.8.2

3 files

1.8.1

3 files

1.8.0

3 files

1.7.7

3 files

1.7.4

3 files

1.7.3

3 files

1.7.2

3 files

1.7.1

3 files

1.7.0

3 files

1.6.13

3 files

1.6.12

3 files

1.6.11

3 files

1.6.6

3 files

1.6.5

3 files

1.6.4

3 files

1.6.3

3 files

1.6.2

3 files

1.6.1

3 files

1.6.0

3 files

1.5.2

3 files

1.5.1

3 files

1.5.0

3 files

1.4.5

3 files

1.4.4

3 files

1.4.3

3 files

1.4.2

3 files

1.4.1

3 files

1.4.0

3 files

1.3.9

3 files

1.3.8

3 files

1.3.7

3 files

1.3.6

3 files

1.3.5

3 files

1.3.4

3 files

1.3.3

3 files

1.3.2

3 files

1.3.1

3 files

1.3.0

3 files

1.2.5

3 files

1.2.4

3 files

1.1.2

3 files

1.1.1

3 files

1.0.4

3 files

1.0.3

3 files

0.1.5

3 files

0.1.4

3 files

0.1.3

3 files

0.1.2

3 files

0.1.1

3 files

0.1.0

3 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page