From 09d886816ce1a29041e02f694dc3212fb517ac10 Mon Sep 17 00:00:00 2001 From: Henry Heng Date: Mon, 26 Aug 2024 16:11:54 +0100 Subject: [PATCH] Feature/custom model name for gemini (#3088) custom model name for gemini --- .../ChatGoogleGenerativeAI.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/components/nodes/chatmodels/ChatGoogleGenerativeAI/ChatGoogleGenerativeAI.ts b/packages/components/nodes/chatmodels/ChatGoogleGenerativeAI/ChatGoogleGenerativeAI.ts index d510db4297d..4141cffe0ce 100644 --- a/packages/components/nodes/chatmodels/ChatGoogleGenerativeAI/ChatGoogleGenerativeAI.ts +++ b/packages/components/nodes/chatmodels/ChatGoogleGenerativeAI/ChatGoogleGenerativeAI.ts @@ -21,7 +21,7 @@ class GoogleGenerativeAI_ChatModels implements INode { constructor() { this.label = 'ChatGoogleGenerativeAI' this.name = 'chatGoogleGenerativeAI' - this.version = 2.0 + this.version = 2.1 this.type = 'ChatGoogleGenerativeAI' this.icon = 'GoogleGemini.svg' this.category = 'Chat Models' @@ -49,6 +49,14 @@ class GoogleGenerativeAI_ChatModels implements INode { loadMethod: 'listModels', default: 'gemini-pro' }, + { + label: 'Custom Model Name', + name: 'customModelName', + type: 'string', + placeholder: 'gemini-1.5-pro-exp-0801', + description: 'Custom model name to use. If provided, it will override the model selected', + additionalParams: true + }, { label: 'Temperature', name: 'temperature', @@ -165,6 +173,7 @@ class GoogleGenerativeAI_ChatModels implements INode { const temperature = nodeData.inputs?.temperature as string const modelName = nodeData.inputs?.modelName as string + const customModelName = nodeData.inputs?.customModelName as string const maxOutputTokens = nodeData.inputs?.maxOutputTokens as string const topP = nodeData.inputs?.topP as string const topK = nodeData.inputs?.topK as string @@ -177,7 +186,7 @@ class GoogleGenerativeAI_ChatModels implements INode { const obj: Partial = { apiKey: apiKey, - modelName: modelName, + modelName: customModelName || modelName, streaming: streaming ?? true }