Interface LmChatLemonadeNodeParameters

Source
interface LmChatLemonadeNodeParameters {
    model?: string;
    options?: {
        frequencyPenalty?: number;
        maxTokens?: number;
        presencePenalty?: number;
        stop?: string;
        temperature?: number;
        topP?: number;
    };
}

Properties§

Source§

readonly model?: string

The model which will generate the completion. Models are loaded and managed through the Lemonade server. Type options: {"loadOptions":{"routing":{"request":{"method":"GET","url":"/models"},"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"data"}},{"type":"setKeyValue","properties":{"name":"={{$responseItem.id}}","value":"={{$responseItem.id}}"}},{"type":"sort","properties":{"key":"name"}}]}}}}

Source§

readonly options?: {
    frequencyPenalty?: number;
    maxTokens?: number;
    presencePenalty?: number;
    stop?: string;
    temperature?: number;
    topP?: number;
}

Additional options to add Default: {}