mcp-use TypeScript API
    Preparing search index...

    Interface LLMConfig

    Constructor settings forwarded to a dynamically loaded LangChain model.

    interface LLMConfig {
        apiKey?: string;
        maxTokens?: number;
        temperature?: number;
        topP?: number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional provider-specific constructor settings.

    Index
    apiKey?: string

    Provider API key. When omitted, the provider environment variable is used.

    maxTokens?: number

    Maximum number of output tokens.

    temperature?: number

    Sampling temperature.

    topP?: number

    Nucleus sampling probability.