Skip to content

Commit 9170cac

Browse files
authored
bugfix: change field to be optional (#4446)
fix: make customModelName field as optional
1 parent cd36924 commit 9170cac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/components/nodes/chatmodels/ChatGoogleVertexAI/ChatGoogleVertexAI.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ class GoogleVertexAI_ChatModels implements INode {
9999
type: 'string',
100100
placeholder: 'gemini-1.5-pro-exp-0801',
101101
description: 'Custom model name to use. If provided, it will override the model selected',
102-
additionalParams: true
102+
additionalParams: true,
103+
optional: true
103104
},
104105
{
105106
label: 'Temperature',

0 commit comments

Comments
 (0)