Skip to content
@tensorlakeai

Tensorlake

Tensorlake is dynamic compute infrastructure for secure, stateful AI agent execution
Tensorlake

Agent-native compute infrastructure.

Secure sandboxes that scale from one to thousands.

Documentation · Book a Demo · Slack


Tensorlake provides dynamic, persistent sandboxes for AI agents. Run untrusted code securely, fan out parallel execution across clusters, and checkpoint agents to resume them on demand — from the CLI or the Python SDK.

pip install tensorlake
tl login
tl sbx new my-sandbox --cpus 1.0 --memory 1024
tl sbx exec <sandbox-id> python -c 'print("Hello from Tensorlake")'
tl sbx snapshot <sandbox-id>
from tensorlake.sandbox import SandboxClient

client = SandboxClient()
sandbox = client.create_and_connect(name="my-sandbox", cpus=1.0, memory_mb=1024)

result = sandbox.run("python", ["-c", "print('Hello from Tensorlake')"])
print(result.stdout)

# Checkpoint and snapshot
snapshot = client.snapshot_and_wait(sandbox.sandbox_id)

Why Tensorlake

  • Distributed Fan-out — Go from one sandbox to hundreds per second for deep research and parallel tool use
  • Stateful Suspend & Resume — Checkpoint agents to cold storage, wake them up instantly when needed
  • Dynamic Resources — Allocate CPU, memory, and GPU on the fly — no static templates
  • SSD-native I/O — Built for workloads that read and write heavily, not just fast boot
  • BYOC / On-Prem — Run on your infrastructure for cost control, security, and compliance
  • Install Anything — Docker, Kubernetes, systemd — full Linux environments, not stripped-down containers

Repositories

Repository Description
tensorlake/sdk CLI and Python SDK
tensorlake/cookbooks Example projects and integrations
tensorlake/skills Skills for coding agents to use Tensorlake
benchmarks Sandbox File System I/O Benchmarks

Get in Touch

X LinkedIn

Pinned Loading

  1. tensorlake tensorlake Public

    Tensorlake is a serverless runtime for sandboxes and deploying background agentic applications

    Python 902 134

  2. sandbox-sqlite-bench sandbox-sqlite-bench Public

    File System I/O benchmarks of major Sandbox vendors

    Python 9 1

  3. tensorlake-skills tensorlake-skills Public

    Build production agent systems with orchestration and sandboxed execution environments using the Tensorlake SDK

    Shell 167 7

  4. cookbooks cookbooks Public

    Python 6

  5. computer-use-demo computer-use-demo Public

    A simple multi-sandbox Computer Use Agent web app built with TypeScript.

    TypeScript 1

Repositories

Showing 10 of 35 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…