Interface LmChatAnthropicNodeParameters

Source
interface LmChatAnthropicNodeParameters {
    model?:
        | { mode: "id"
        | "list"; value: string }
        | "claude-3-5-sonnet-20241022"
        | "claude-3-opus-20240229"
        | "claude-3-5-sonnet-20240620"
        | "claude-3-sonnet-20240229"
        | "claude-3-5-haiku-20241022"
        | "claude-3-haiku-20240307"
        | "claude-2"
        | "claude-2.1"
        | "claude-instant-1.2"
        | "claude-instant-1";
    options?: {
        effort?:
            | "low"
            | "high"
            | "medium"
            | "max"
            | "xhigh";
        maxTokensToSample?: number;
        temperature?: number;
        thinking?: boolean;
        thinkingBudget?: number;
        thinkingMode?: "manual"
        | "disabled"
        | "adaptive";
        topK?: number;
        topP?: number;
    };
}

Properties§

§readonly model?:
    | { mode: "id"
    | "list"; value: string }
    | "claude-3-5-sonnet-20241022"
    | "claude-3-opus-20240229"
    | "claude-3-5-sonnet-20240620"
    | "claude-3-sonnet-20240229"
    | "claude-3-5-haiku-20241022"
    | "claude-3-haiku-20240307"
    | "claude-2"
    | "claude-2.1"
    | "claude-instant-1.2"
    | "claude-instant-1"

The model which will generate the completion. Learn more. Default: "claude-2"

§readonly options?: { ... }

Additional options to add Default: {}