Interface LmChatGroqNodeParameters

Source
interface LmChatGroqNodeParameters {
    model?: string;
    options?: {
        maxTokensToSample?: number;
        temperature?: number;
    };
}

Properties§

Source§

readonly model?: string

The model which will generate the completion. Learn more. Default: "llama3-8b-8192" Type options: {"loadOptions":{"routing":{"request":{"method":"GET","url":"/models"},"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"data"}},{"type":"filter","properties":{"pass":"={{ $responseItem.active === true && $responseItem.object === "model" }}"}},{"type":"setKeyValue","properties":{"name":"={{$responseItem.id}}","value":"={{$responseItem.id}}"}}]}}}}

Source§

readonly options?: { maxTokensToSample?: number; temperature?: number }

Additional options to add Default: {}