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
description: 'Standard foundation models with on-demand pricing',
73
+
},
74
+
{
75
+
name: 'Inference Profiles',
76
+
value: 'inferenceProfile',
77
+
description:
78
+
'Cross-region inference profiles (required for models like Claude Sonnet 4 and others)',
79
+
},
80
+
],
81
+
default: 'onDemand',
82
+
description: 'Choose between on-demand foundation models or inference profiles',
83
+
},
59
84
{
60
85
displayName: 'Model',
61
86
name: 'model',
62
87
type: 'options',
63
88
allowArbitraryValues: true,// Hide issues when model name is specified in the expression and does not match any of the options
64
89
description:
65
90
'The model which will generate the completion. <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models.html">Learn more</a>.',
91
+
displayOptions: {
92
+
hide: {
93
+
modelSource: ['inferenceProfile'],
94
+
},
95
+
},
66
96
typeOptions: {
97
+
loadOptionsDependsOn: ['modelSource'],
67
98
loadOptions: {
68
99
routing: {
69
100
request: {
@@ -105,6 +136,62 @@ export class LmChatAwsBedrock implements INodeType {
105
136
},
106
137
default: '',
107
138
},
139
+
{
140
+
displayName: 'Model',
141
+
name: 'model',
142
+
type: 'options',
143
+
allowArbitraryValues: true,
144
+
description:
145
+
'The inference profile which will generate the completion. <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/inference-profiles-use.html">Learn more</a>.',
0 commit comments