Letta · Schema

SandboxConfigUpdate

Pydantic model for updating SandboxConfig fields.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
config object The JSON configuration data for the sandbox.
View JSON Schema on GitHub

JSON Schema

letta-sandboxconfigupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SandboxConfigUpdate",
  "title": "SandboxConfigUpdate",
  "properties": {
    "config": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/LocalSandboxConfig"
        },
        {
          "$ref": "#/components/schemas/E2BSandboxConfig"
        },
        {
          "$ref": "#/components/schemas/ModalSandboxConfig"
        }
      ],
      "title": "Config",
      "description": "The JSON configuration data for the sandbox."
    }
  },
  "additionalProperties": false,
  "type": "object",
  "description": "Pydantic model for updating SandboxConfig fields."
}