mcp-use TypeScript API
    Preparing search index...

    Interface LLMConfig

    Serializable model configuration used by inspector and configuration UIs.

    interface LLMConfig {
        apiKey: string;
        baseUrl?: string;
        model: string;
        provider: ProviderName;
        temperature?: number;
    }
    Index
    apiKey: string

    Provider API key.

    baseUrl?: string

    Provider API base URL override.

    model: string

    Provider-specific model identifier.

    provider: ProviderName

    Provider implementation.

    temperature?: number

    Sampling temperature.