You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -61,7 +65,7 @@ class GoogleVertexAI_ChatModels implements INode {
61
65
constructor(){
62
66
this.label='ChatGoogleVertexAI'
63
67
this.name='chatGoogleVertexAI'
64
-
this.version=5.0
68
+
this.version=5.1
65
69
this.type='ChatGoogleVertexAI'
66
70
this.icon='GoogleVertex.svg'
67
71
this.category='Chat Models'
@@ -89,6 +93,14 @@ class GoogleVertexAI_ChatModels implements INode {
89
93
type: 'asyncOptions',
90
94
loadMethod: 'listModels'
91
95
},
96
+
{
97
+
label: 'Custom Model Name',
98
+
name: 'customModelName',
99
+
type: 'string',
100
+
placeholder: 'gemini-1.5-pro-exp-0801',
101
+
description: 'Custom model name to use. If provided, it will override the model selected',
102
+
additionalParams: true
103
+
},
92
104
{
93
105
label: 'Temperature',
94
106
name: 'temperature',
@@ -163,7 +175,6 @@ class GoogleVertexAI_ChatModels implements INode {
163
175
thrownewError(
164
176
'Error: More than one component has been inputted. Please use only one of the following: Google Application Credential File Path or Google Credential JSON Object'
0 commit comments