langchain.js
    Preparing search index...

    Configuration options for the SandboxClient.

    interface SandboxClientConfig {
        apiEndpoint?: string;
        apiKey?: string;
        maxConcurrency?: number;
        maxRetries?: number;
        timeoutMs?: number;
    }
    Index

    Properties

    apiEndpoint?: string

    Full URL of the sandbox API endpoint. If not provided, derived from LANGSMITH_ENDPOINT environment variable.

    apiKey?: string

    API key for authentication. If not provided, uses LANGSMITH_API_KEY environment variable.

    maxConcurrency?: number

    Maximum number of concurrent requests. Defaults to Infinity (no limit).

    maxRetries?: number

    Maximum number of retries for transient failures (network errors, 5xx, 429). Defaults to 3.

    timeoutMs?: number

    Default HTTP timeout in milliseconds.