Langfuse JS/TS SDKs
    Preparing search index...

    Interface LlmConnection

    LLM API connection configuration (secrets excluded)

    interface LlmConnection {
        adapter: string;
        baseURL?: string;
        createdAt: string;
        customModels: string[];
        displaySecretKey: string;
        extraHeaderKeys: string[];
        id: string;
        provider: string;
        updatedAt: string;
        withDefaultModels: boolean;
    }
    Index

    Properties

    adapter: string

    The adapter used to interface with the LLM

    baseURL?: string

    Custom base URL for the LLM API

    createdAt: string
    customModels: string[]

    List of custom model names available for this connection

    displaySecretKey: string

    Masked version of the secret key for display purposes

    extraHeaderKeys: string[]

    Keys of extra headers sent with requests (values excluded for security)

    id: string
    provider: string

    Provider name (e.g., 'openai', 'my-gateway'). Must be unique in project, used for upserting.

    updatedAt: string
    withDefaultModels: boolean

    Whether to include default models for this adapter