Interface LmChatMinimaxNodeParameters

Source
interface LmChatMinimaxNodeParameters {
    model?:
        | "MiniMax-M2"
        | "MiniMax-M2.1"
        | "MiniMax-M2.1-highspeed"
        | "MiniMax-M2.5"
        | "MiniMax-M2.5-highspeed"
        | "MiniMax-M2.7"
        | "MiniMax-M2.7-highspeed";
    options?: {
        hideThinking?: boolean;
        maxRetries?: number;
        maxTokens?: number;
        temperature?: number;
        timeout?: number;
        topP?: number;
    };
}

Properties§

§readonly model?:
    | "MiniMax-M2"
    | "MiniMax-M2.1"
    | "MiniMax-M2.1-highspeed"
    | "MiniMax-M2.5"
    | "MiniMax-M2.5-highspeed"
    | "MiniMax-M2.7"
    | "MiniMax-M2.7-highspeed"

The model which will generate the completion. Learn more. Default: "MiniMax-M2.7"

§readonly options?: { ... }

Additional options to add Default: {}