langchain.js
    Preparing search index...

    Represents a SandboxTemplate.

    Templates define the image, resource limits, and volume mounts for sandboxes.

    interface SandboxTemplate {
        created_at?: string;
        id?: string;
        image: string;
        name: string;
        resources: ResourceSpec;
        updated_at?: string;
        volume_mounts?: VolumeMountSpec[];
    }
    Index

    Properties

    created_at?: string
    id?: string
    image: string
    name: string
    resources: ResourceSpec
    updated_at?: string
    volume_mounts?: VolumeMountSpec[]