tensorlake 0.5.95


pip install tensorlake

  Latest version

Released: Jul 30, 2026


Meta
Author: Tensorlake Inc.
Requires Python: >=3.10

Classifiers

Tensorlake — sandbox-native cloud for AI agents

Build agents with sandboxes and serverless orchestration runtime

PyPI Version Python Support License Documentation Slack

Tensorlake is a compute infrastructure platform for building agentic applications with sandboxes.

The Sandbox API creates MicroVM sandboxes which you can use to run agents, or use them as an isolated environment for running tools or LLM generated code.

In addition to stateful VMs, you can also add long running orchestration capabilities to Agents using a serverless function runtime with fan-out capabilities.

Sandboxes

Tensorlake Sandboxes are stateful Firecracker MicroVMs built for instant, stateful execution environments for AI agents — spin up millions of VMs with near-SSD filesystem performance.

Key capabilities

  • Fastest Filesystem I/O — Block-based storage achieving near-SSD speeds inside virtual machines. In SQLite benchmarks (2 vCPUs, 4 GB RAM), Tensorlake completes in 2.45s vs Vercel 3.00s (1.2×), E2B 3.92s (1.6×), Modal 4.66s (1.9×), and Daytona 5.51s (2.2×).
  • Fast startup — Sandboxes created in under a second via Lattice, a dynamic cluster scheduler.
  • Snapshots & cloning — Snapshot at any point to create durable memory and filesystem checkpoints; clone running sandboxes instantaneously across machines.
  • Auto suspend/resume — Sandboxes suspend when idle and resume in under a second without losing any memory or filesystem state.
  • Live migration — Sandboxes automatically move between machines during updates with only a brief pause of a few seconds.
  • Scale — Supports up to 5 million sandboxes in a single project.

Python SDK Installation

pip install tensorlake

CLI Installation

The tl CLI is distributed as a standalone binary, not through PyPI or npm. Install it with the install script:

curl -fsSL https://tensorlake.ai/install | sh

Setup

Sign up at cloud.tensorlake.ai and get your API key.

export TENSORLAKE_API_KEY="your-api-key"
tl login

Create Your First Sandbox (CLI)

Create a sandbox, run a command, and clean up:

# Create a sandbox
tl sbx create --image tensorlake/tensorlake/ubuntu-minimal

# Run a command inside it
tl sbx exec <sandbox-id> -- sh -lc "printf 'Hello from the sandbox!\n'"

# Copy a file into the sandbox
tl sbx cp ./my_script.py <sandbox-id>:/tmp/my_script.py

# Open an interactive terminal
tl sbx ssh <sandbox-id>

# Terminate when done
tl sbx terminate <sandbox-id>

--image expects a sandbox image name such as tensorlake/ubuntu-minimal or a registered Sandbox Image name, not an arbitrary Docker image reference.

Create a Sandbox Programmatically

from tensorlake.sandbox import SandboxClient

client = SandboxClient.for_cloud(api_key="your-api-key")

# Create a sandbox and connect to it
with client.create_and_connect(image="tensorlake/ubuntu-minimal") as sandbox:
    # Run a command
    result = sandbox.run("sh", ["-lc", "printf 'Hello from the sandbox!\\n'"])
    print(result.stdout)  # "Hello from the sandbox!"

    # Write and read files
    sandbox.write_file("/tmp/data.txt", b"some data")
    content = sandbox.read_file("/tmp/data.txt")

    # Start a long-running process
    proc = sandbox.start_process("sleep", ["300"])
    print(proc.pid)

# Sandbox is automatically terminated when the context manager exits

Snapshots

Save the state of a sandbox and restore it later:

# Snapshot a running sandbox
snapshot = client.snapshot_and_wait(sandbox_id)

# Later, create a new sandbox from the snapshot
with client.create_and_connect(snapshot_id=snapshot.snapshot_id) as sandbox:
    # Picks up right where you left off
    result = sandbox.run("ls", ["/tmp"])
    print(result.stdout)

Sandbox Pools

Pre-warm containers for fast startup:

from tensorlake.sandbox import NetworkConfig

# Create a pool with warm containers and no internet access
pool = client.create_pool(
    image="tensorlake/ubuntu-minimal",
    warm_containers=3,
    network=NetworkConfig(allow_internet_access=False),
)

# Claim a sandbox instantly from the pool
resp = client.claim(pool.pool_id)
sandbox = client.connect(resp.sandbox_id)

# Named sandboxes can be reconnected later by name
named = client.create(image="tensorlake/ubuntu-minimal", name="stable-name")
sandbox = client.connect("stable-name")

Set the pool network policy when you create the pool, replace it later with a pool update, or pass CLEAR_NETWORK_POLICY (Python) / null (TypeScript) to remove it. On a change the service recycles the pool's unclaimed warm containers onto the new policy, while containers already claimed by sandboxes keep the policy they booted with.


Cloud Volumes

FilesystemClient manages durable, versioned file trees without mounting them. SDK writes hash files locally, upload missing 64 MiB parts directly to checksum-bound object-store URLs, and then atomically publish metadata. Reads resolve an authenticated immutable plan and fetch the selected records directly from signed object-store URLs. File payloads normally do not pass through the Tensorlake API service.

import { FilesystemClient } from "tensorlake";

const client = new FilesystemClient({
  apiKey: "your-api-key",
  organizationId: "org_...",
  projectId: "proj_...",
});
const fs = await client.create("agent-artifacts");

// In-memory data; all changes become visible atomically.
await fs.writeFiles({
  "run/config.json": JSON.stringify({ model: "gpt-5" }),
  "run/input.txt": "hello",
});

// Multi-GiB files use bounded memory and stream directly to object storage.
await fs.writeFileFromPath("models/weights.bin", "./weights.bin");

// These reuse immutable content references and transfer no payload bytes.
await fs.copyFile("run/input.txt", "run/input-copy.txt");
await fs.moveFile("run/config.json", "archive/config.json");

// One request returns only the selected bytes plus full-file identity/size.
const read = await fs.readFileWithMetadata("models/weights.bin", {
  range: { offset: 0, length: 1024 * 1024 },
});

// Snapshot retention and forks are metadata-only operations.
const snapshot = await fs.snapshot("ready for evaluation");
const fork = await client.fork("agent-artifacts-eval", fs.name, snapshot.id);
await fork.writeFile("results/score.txt", "0.98");

await fs.deleteSnapshot(snapshot.id);

writeFile() and writeFiles() accept bytes already in memory. Prefer writeFileFromPath() or writeFilesFromPaths() for large local files so neither JavaScript nor Rust retains the complete payload. A successful write is durable before it returns, but only the live head is retained automatically; snapshot() pins the current head permanently in one client/server round trip. readFileWithMetadata() returns immutable content identity and total size with the bytes; its optional range downloads only overlapping immutable records. The SDK bounds every response, verifies stored and logical content checksums, and falls back to the authenticated service only when the object store cannot honor the signed range. Deleting a snapshot releases that retention root, while bytes still reachable from a live head, another snapshot, a fork, or a mount remain durable.


Orchestrate

Create orchestration APIs on a distributed runtime with automatic scaling, fan-out capabilities and built-in tracking. The orchestration APIs can be invoked using HTTP requests or using the Python SDK.

Quickstart

Decorate your entrypoint with @application() and functions with @function(). Each function runs in its own isolated sandbox.

Example: City guide using OpenAI Agents with web search and code execution:

from agents import Agent, Runner
from agents.tool import WebSearchTool, function_tool
from tensorlake.applications import application, function, Image

# Define the image with necessary dependencies
FUNCTION_CONTAINER_IMAGE = Image(base_image="python:3.11-slim", name="city_guide_image").run(
    "pip install openai openai-agents"
)

@function_tool
@function(
    description="Gets the weather for a city using an OpenAI Agent with web search",
    secrets=["OPENAI_API_KEY"],
    image=FUNCTION_CONTAINER_IMAGE,
)
def get_weather_tool(city: str) -> str:
    """Uses an OpenAI Agent with WebSearchTool to find current weather."""
    agent = Agent(
        name="Weather Reporter",
        instructions="Use web search to find current weather in Fahrenheit for the city.",
        tools=[WebSearchTool()],  # Agent can search the web
    )
    result = Runner.run_sync(agent, f"City: {city}")
    return result.final_output.strip()

@application(tags={"type": "example", "use_case": "city_guide"})
@function(
    description="Creates a guide with temperature conversion using function_tool",
    secrets=["OPENAI_API_KEY"],
    image=FUNCTION_CONTAINER_IMAGE,
)
def city_guide_app(city: str) -> str:
    """Uses an OpenAI Agent with function_tool to run Python code for conversion."""

    @function_tool
    def convert_to_celsius_tool(python_code: str) -> float:
        """Converts Fahrenheit to Celsius - runs as Python code via Agent."""
        return float(eval(python_code))

    agent = Agent(
        name="Guide Creator",
        instructions="Using the appropriate tools, get the weather for the purposes of the guide. If the city uses Celsius, call convert_to_celsius_tool to convert the temperature, passing in the code needed to convert the temperature to Celsius. Create a friendly guide that references the temperature of the city in Celsius if the city typically uses Celsius, otherwise reference the temperature in Fahrenheit. Only reference Celsius or Fahrenheit, not both.",
        tools=[get_weather_tool, convert_to_celsius_tool],  # Agent can execute this Python function
    )
    result = Runner.run_sync(agent, f"City: {city}")
    return result.final_output.strip()

Deploy to Tensorlake

  1. Set your API keys:
export TENSORLAKE_API_KEY="your-api-key"
tl secrets set OPENAI_API_KEY "your-openai-key"
  1. Deploy:
tl deploy examples/readme_example/city_guide.py

Call via HTTP

# Invoke the application
curl https://api.tensorlake.ai/applications/city_guide_app \
  -H "Authorization: Bearer $TENSORLAKE_API_KEY" \
  --json '"San Francisco"'
# Returns: {"request_id": "beae8736ece31ef9"}

# Get the result
curl https://api.tensorlake.ai/applications/city_guide_app/requests/{request_id}/output \
  -H "Authorization: Bearer $TENSORLAKE_API_KEY"

# Stream results with SSE
curl https://api.tensorlake.ai/applications/city_guide_app \
  -H "Authorization: Bearer $TENSORLAKE_API_KEY" \
  -H "Accept: text/event-stream" \
  --json '"San Francisco"'

FAQ

What is Tensorlake? Tensorlake is the sandbox-native cloud for AI agents — a compute platform for securely running untrusted, LLM-generated code in isolated sandboxes and orchestrating agentic applications at scale.

How do I run untrusted or LLM-generated code safely? Each Tensorlake sandbox is an isolated Firecracker MicroVM, so untrusted or LLM-generated code runs in a hardware-virtualized environment separate from your infrastructure and other sandboxes. Create one with the Python or TypeScript SDK, or the CLI, in a few lines.

How is Tensorlake different from E2B, Modal, or Daytona? Tensorlake is built for heavy filesystem I/O, fast startup, and large-scale fan-out. In SQLite benchmarks (2 vCPUs, 4 GB RAM) it completes in 2.45s versus E2B (3.92s), Modal (4.66s), and Daytona (5.51s), and it supports snapshots, auto suspend/resume, live migration, and up to 5 million sandboxes per project.

Can I checkpoint and resume an AI agent? Yes. Snapshot a running sandbox at any point to capture both memory and filesystem state, then create a new sandbox from that snapshot to pick up exactly where you left off. Sandboxes also auto-suspend when idle and resume in under a second without losing state.

How fast do sandboxes start? Sandboxes are created in under a second via Lattice, a dynamic cluster scheduler. For even faster starts, use sandbox pools to keep warm containers ready to claim instantly.

How do I run code interpreter / tool execution for an LLM agent? Spin up a sandbox as an isolated execution environment for an agent's tools or generated code, run commands or processes inside it, read and write files, and terminate it when done — all from the Python or TypeScript SDK, or the CLI.

What languages and interfaces are supported? Tensorlake provides a Python SDK, a TypeScript SDK, and a standalone CLI (tl), plus an HTTP API for invoking orchestration applications.

How do I get started? Sign up at cloud.tensorlake.ai, run pip install tensorlake for the Python SDK, install the CLI with curl -fsSL https://tensorlake.ai/install | sh, set your TENSORLAKE_API_KEY, and create your first sandbox. See the documentation for full guides.

Learn More

0.5.95 Jul 30, 2026
0.5.94 Jul 30, 2026
0.5.92 Jul 29, 2026
0.5.91 Jul 29, 2026
0.5.89 Jul 26, 2026
0.5.88 Jul 24, 2026
0.5.85 Jul 21, 2026
0.5.77 Jul 17, 2026
0.5.76 Jul 16, 2026
0.5.75 Jul 15, 2026
0.5.70 Jul 11, 2026
0.5.67 Jul 10, 2026
0.5.66 Jul 09, 2026
0.5.63 Jul 09, 2026
0.5.59 Jul 06, 2026
0.5.58 Jul 04, 2026
0.5.57 Jul 03, 2026
0.5.55 Jul 02, 2026
0.5.54 Jul 01, 2026
0.5.53 Jun 30, 2026
0.5.52 Jun 29, 2026
0.5.51 Jun 27, 2026
0.5.50 Jun 23, 2026
0.5.47 Jun 16, 2026
0.5.46 Jun 16, 2026
0.5.44 Jun 15, 2026
0.5.43 Jun 14, 2026
0.5.41 Jun 12, 2026
0.5.40 Jun 12, 2026
0.5.38 Jun 10, 2026
0.5.37 Jun 10, 2026
0.5.36 Jun 10, 2026
0.5.35 Jun 09, 2026
0.5.34 Jun 08, 2026
0.5.33 Jun 07, 2026
0.5.32 Jun 04, 2026
0.5.31 Jun 03, 2026
0.5.30 Jun 03, 2026
0.5.29 Jun 02, 2026
0.5.28 Jun 02, 2026
0.5.27 May 30, 2026
0.5.26 May 30, 2026
0.5.25 May 29, 2026
0.5.24 May 29, 2026
0.5.23 May 28, 2026
0.5.22 May 28, 2026
0.5.21 May 28, 2026
0.5.20 May 27, 2026
0.5.19 May 26, 2026
0.5.18 May 25, 2026
0.5.17 May 21, 2026
0.5.16 May 21, 2026
0.5.15 May 18, 2026
0.5.14 May 17, 2026
0.5.13 May 16, 2026
0.5.12 May 15, 2026
0.5.11 May 14, 2026
0.5.10 May 13, 2026
0.5.9 May 07, 2026
0.5.8 May 07, 2026
0.5.7 May 04, 2026
0.5.6 May 02, 2026
0.5.5 Apr 29, 2026
0.5.4 Apr 28, 2026
0.5.3 Apr 27, 2026
0.5.2 Apr 27, 2026
0.5.1 Apr 25, 2026
0.5.0 Apr 24, 2026
0.4.50 Apr 24, 2026
0.4.49 Apr 21, 2026
0.4.48 Apr 20, 2026
0.4.45 Apr 12, 2026
0.4.44 Apr 10, 2026
0.4.43 Apr 08, 2026
0.4.42 Apr 08, 2026
0.4.41 Apr 08, 2026
0.4.40 Apr 07, 2026
0.4.39 Apr 07, 2026
0.4.38 Apr 03, 2026
0.4.37 Apr 03, 2026
0.4.35 Apr 03, 2026
0.4.34 Apr 01, 2026
0.4.33 Mar 31, 2026
0.4.32 Mar 30, 2026
0.4.31 Mar 30, 2026
0.4.30 Mar 28, 2026
0.4.29 Mar 26, 2026
0.4.27 Mar 24, 2026
0.4.26 Mar 24, 2026
0.4.25 Mar 23, 2026
0.4.23 Mar 20, 2026
0.4.22 Mar 20, 2026
0.4.21 Mar 19, 2026
0.4.20 Mar 12, 2026
0.4.19 Mar 11, 2026
0.4.18 Mar 11, 2026
0.4.17 Mar 10, 2026
0.4.16 Mar 10, 2026
0.4.14 Mar 09, 2026
0.4.11 Mar 06, 2026
0.4.9 Mar 05, 2026
0.4.4 Feb 27, 2026
0.4.3 Feb 27, 2026
0.4.2 Feb 27, 2026
0.4.1 Feb 26, 2026
0.4.0 Feb 26, 2026
0.3.13 Feb 19, 2026
0.3.12 Feb 16, 2026
0.3.11 Feb 12, 2026
0.3.10 Feb 12, 2026
0.3.9 Feb 09, 2026
0.3.8 Feb 05, 2026
0.3.7 Feb 05, 2026
0.3.6 Feb 03, 2026
0.3.5 Feb 02, 2026
0.3.4 Jan 27, 2026
0.3.3 Jan 17, 2026
0.3.2 Jan 14, 2026
0.3.1 Jan 09, 2026
0.2.101 Jan 08, 2026
0.2.100 Jan 05, 2026
0.2.99 Dec 30, 2025
0.2.98 Dec 29, 2025
0.2.97 Dec 22, 2025
0.2.96 Dec 18, 2025
0.2.95 Dec 18, 2025
0.2.94 Dec 16, 2025
0.2.93 Dec 16, 2025
0.2.92 Dec 16, 2025
0.2.91 Dec 11, 2025
0.2.90 Dec 09, 2025
0.2.88 Dec 05, 2025
0.2.87 Dec 03, 2025
0.2.86 Dec 02, 2025
Extras: None
Dependencies:
httpx[http2] (<1.0,>=0.27.2)
websocket-client (<2.0,>=1.8.0)
websockets (<14.0,>=13.0)
pydantic (<3.0,>=2.0)
grpcio (<2.0.0,>=1.76.0)
protobuf (<7.0.0,>=6.31.1)