LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • Client
  • AsyncClient
  • Run Helpers
  • Run Trees
  • Evaluation
  • Schemas
  • Utilities
  • Wrappers
  • Anonymizer
  • Testing
  • Expect API
  • Middleware
  • Pytest Plugin
  • Deployment SDK
  • RemoteGraph
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDKRemoteGraph
Language
Theme
Pythonlangsmithsandbox
Module●Since v0.6

sandbox

LangSmith Sandbox Module.

This module provides sandboxed code execution capabilities through the LangSmith Sandbox API.

Example:

from langsmith.sandbox import SandboxClient

Uses LANGSMITH_ENDPOINT and LANGSMITH_API_KEY from environment

client = SandboxClient()

with client.sandbox(template_name="python-sandbox") as sb: result = sb.run("python --version") print(result.stdout)

Or async:

from langsmith.sandbox import AsyncSandboxClient

async with AsyncSandboxClient() as client: async with await client.sandbox(template_name="python-sandbox") as sb: result = await sb.run("python --version") print(result.stdout)

Classes

class
AsyncSandboxClient
class
AsyncSandbox
class
SandboxClient
class
CommandTimeoutError
class
DataplaneNotConfiguredError
class
QuotaExceededError
class
ResourceAlreadyExistsError
class
ResourceInUseError
class
ResourceNameConflictError
class
ResourceNotFoundError
class
ResourceTimeoutError
class
SandboxAPIError
class
SandboxAuthenticationError
class
SandboxClientError
class
SandboxConnectionError
class
SandboxCreationError
class
SandboxNotReadyError
class
SandboxOperationError
class
SandboxServerReloadError
class
ValidationError
class
ExecutionResult
class
Pool
class
ResourceSpec
class
SandboxTemplate
class
Volume
class
VolumeMountSpec
class
Sandbox
View source on GitHub

Async client for interacting with the Sandbox Server API.

This client provides an async interface for managing sandboxes and templates.

Represents an active sandbox for running commands and file operations async.

This class is typically obtained from AsyncSandboxClient.sandbox() and supports the async context manager protocol for automatic cleanup.

Client for interacting with the Sandbox Server API.

This client provides a simple interface for managing sandboxes and templates.

Raised when a command exceeds its timeout.

Raised when dataplane_url is not available for the sandbox.

This occurs when the sandbox-router URL is not configured for the cluster.

Raised when organization quota limits are exceeded.

Users should contact support@langchain.dev to increase quotas.

Raised when creating a resource that already exists.

Raised when deleting a resource that is still in use.

Raised when updating a resource name to one that already exists.

Raised when a resource is not found.

Raised when an operation times out.

Raised when the API endpoint returns an unexpected error.

For example, this is raised for wrong URL or path.

Raised when authentication fails (invalid or missing API key).

Base exception for sandbox client errors.

Raised when connection to the sandbox server fails.

Raised when sandbox creation fails.

Raised when attempting to interact with a sandbox that is not ready.

Raised when a sandbox operation fails (run, read, write).

Raised when the server sends a 1001 Going Away close frame.

This indicates a server hot-reload, not a true connection failure. The command is still running on the server.

This is a subclass of SandboxConnectionError, so the auto-reconnect logic in CommandHandle catches it along with all other connection errors. The distinction matters for retry strategy: SandboxServerReloadError triggers immediate reconnect (no backoff), while other SandboxConnectionError triggers exponential backoff.

Users typically never see this exception — it's handled internally.

Raised when request validation fails.

This includes:

  • Resource values exceeding server-defined limits (CPU, memory, storage)
  • Invalid resource units
  • Invalid name formats
  • Pool validation failures (e.g., template has volumes)

Result of executing a command in a sandbox.

Represents a Sandbox Pool for pre-provisioned sandboxes.

Pools pre-provision sandboxes from a template for faster startup. Instead of waiting for a new sandbox to be created, sandboxes can be served from a pre-warmed pool.

Note: Templates with volume mounts cannot be used in pools.

Resource specification for a sandbox.

Represents a SandboxTemplate.

Templates define the image, resource limits, and volume mounts for sandboxes. All other container details are handled by the server with secure defaults.

Represents a persistent volume.

Volumes are persistent storage that can be mounted in sandboxes.

Specification for mounting a volume in a sandbox template.

Represents an active sandbox for running commands and file operations.

This class is typically obtained from SandboxClient.sandbox() and supports the context manager protocol for automatic cleanup.