LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
LangSmith
  • Client
  • Run Trees
  • Traceable
  • Evaluation
  • Schemas
  • Langchain
  • Jest
  • Vitest
  • Wrappers
  • Anonymizer
  • Jestlike
  • Vercel
  • Anthropic
  • Sandbox
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

LangSmith
ClientRun TreesTraceableEvaluationSchemasLangchainJestVitestWrappersAnonymizerJestlikeVercelAnthropicSandbox
Language
Theme
JavaScriptlangsmithsandboxSandboxData
Interface●Since v0.8

SandboxData

Data representing a sandbox instance from the API.

Copy
interface SandboxData

Properties

property
created_at: string
property
dataplane_url: string
property
delete_after_stop_seconds: number

Seconds after a sandbox enters the stopped state before it (and its filesystem clone) are permanently deleted. 0 disables stop-anchored deletion; omitted/undefined falls back to the server default.

property
fs_capacity_bytes: number

Root filesystem capacity in bytes.

property
id: string
property
idle_ttl_seconds: number

Idle timeout in seconds. The launcher stops the sandbox after this many seconds of inactivity. 0 disables the idle stop; omitted/undefined means not set (the server applies a default).

property
mem_bytes: number

Memory allocation in bytes.

property
name: string
property
snapshot_id: string

Snapshot ID used to create this sandbox.

property
status: string
property
status_message: string
property
stopped_at: string

Timestamp when the sandbox transitioned to the stopped state, or undefined while running. The deletion deadline is stopped_at + delete_after_stop_seconds.

property
updated_at: string
property
vcpus: number

Number of vCPUs allocated.

View source on GitHub