Letta · Schema

SandboxConfigCreate

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

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

JSON Schema

letta-sandboxconfigcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SandboxConfigCreate",
  "title": "SandboxConfigCreate",
  "properties": {
    "config": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/LocalSandboxConfig"
        },
        {
          "$ref": "#/components/schemas/E2BSandboxConfig"
        },
        {
          "$ref": "#/components/schemas/ModalSandboxConfig"
        }
      ],
      "title": "Config",
      "description": "The configuration for the sandbox."
    }
  },
  "additionalProperties": false,
  "type": "object",
  "required": [
    "config"
  ]
}