@langwatch/scenario
    Preparing search index...

    Interface LangwatchConfig

    Configuration for LangWatch event reporting. All fields are optional — any omitted fields fall back to environment variables.

    interface LangwatchConfig {
        apiKey?: string;
        endpoint?: string;
        projectId?: string;
    }
    Index
    apiKey?: string

    The API key for authentication. Falls back to LANGWATCH_API_KEY env var.

    endpoint?: string

    The endpoint URL to send events to. Falls back to LANGWATCH_ENDPOINT env var.

    projectId?: string

    The project ID to send events to. Required when using organization-level or bearer API keys.