bugfix: change field to be optional (#4446)
fix: make customModelName field as optional
This commit is contained in:
parent
cd36924bf4
commit
9170cac58b
|
|
@ -99,7 +99,8 @@ class GoogleVertexAI_ChatModels implements INode {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
placeholder: 'gemini-1.5-pro-exp-0801',
|
placeholder: 'gemini-1.5-pro-exp-0801',
|
||||||
description: 'Custom model name to use. If provided, it will override the model selected',
|
description: 'Custom model name to use. If provided, it will override the model selected',
|
||||||
additionalParams: true
|
additionalParams: true,
|
||||||
|
optional: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Temperature',
|
label: 'Temperature',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue