Interface LmChatGoogleVertexNodeParameters

Source
interface LmChatGoogleVertexNodeParameters {
    modelName?: string;
    options?: {
        maxOutputTokens?: number;
        safetySettings?: {
            values: {
                category?:
                    | "HARM_CATEGORY_HARASSMENT"
                    | "HARM_CATEGORY_HATE_SPEECH"
                    | "HARM_CATEGORY_SEXUALLY_EXPLICIT"
                    | "HARM_CATEGORY_DANGEROUS_CONTENT";
                threshold?: | "HARM_BLOCK_THRESHOLD_UNSPECIFIED"
                | "BLOCK_LOW_AND_ABOVE"
                | "BLOCK_MEDIUM_AND_ABOVE"
                | "BLOCK_ONLY_HIGH"
                | "BLOCK_NONE";
            }[];
        };
        temperature?: number;
        thinkingBudget?: number;
        topK?: number;
        topP?: number;
    };
    projectId?: { mode: "id"
    | "list"; value: string };
}

Properties§

§readonly modelName?: string

The model which will generate the completion. Learn more. Default: "gemini-2.5-flash"

§readonly options?: { ... }

Additional options to add Default: {}

§readonly projectId?: { ... }

Select or enter your Google Cloud project ID Default: {"mode":"list","value":""}