Interface LmOpenAiNodeParameters

Source
interface LmOpenAiNodeParameters {
    model?: { mode: "id" | "list"; value: string };
    options?: {
        baseURL?: string;
        frequencyPenalty?: number;
        maxRetries?: number;
        maxTokens?: number;
        presencePenalty?: number;
        temperature?: number;
        timeout?: number;
        topP?: number;
    };
}

Properties§

§readonly model?: { ... }

The model which will generate the completion. Learn more. Default: {"mode":"list","value":"gpt-3.5-turbo-instruct"}

§readonly options?: { ... }

Additional options to add Default: {}