@jambonz/sdk
    Preparing search index...

    Interface AgentLlm

    llm block on the agent verb.

    interface AgentLlm {
        vendor?: string;
        model?: string;
        label?: string;
        auth?: { apiKey?: string; [key: string]: unknown };
        connectOptions?: {
            timeout?: number;
            maxRetries?: number;
            endpoint?: string;
            baseURL?: string;
        };
        llmOptions?: AgentLlmOptions;
    }
    Index

    Properties

    vendor?: string

    LLM vendor. Optional: falls back to the application's default LLM vendor when omitted.

    model?: string

    Model id. Optional: falls back to the application's default LLM model when omitted.

    label?: string
    auth?: { apiKey?: string; [key: string]: unknown }
    connectOptions?: {
        timeout?: number;
        maxRetries?: number;
        endpoint?: string;
        baseURL?: string;
    }
    llmOptions?: AgentLlmOptions