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
Copy file name to clipboardExpand all lines: packages/components/nodes/chatmodels/AWSBedrock/AWSChatBedrock.ts
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ class AWSChatBedrock_ChatModels implements INode {
23
23
constructor(){
24
24
this.label='AWS ChatBedrock'
25
25
this.name='awsChatBedrock'
26
-
this.version=6.0
26
+
this.version=6.1
27
27
this.type='AWSChatBedrock'
28
28
this.icon='aws.svg'
29
29
this.category='Chat Models'
@@ -100,6 +100,16 @@ class AWSChatBedrock_ChatModels implements INode {
100
100
'Allow image input. Refer to the <a href="https://docs.flowiseai.com/using-flowise/uploads#image" target="_blank">docs</a> for more details.',
101
101
default: false,
102
102
optional: true
103
+
},
104
+
{
105
+
label: 'Latency Optimized',
106
+
name: 'latencyOptimized',
107
+
type: 'boolean',
108
+
description:
109
+
'Enable latency optimized configuration for supported models. Refer to the supported <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/latency-optimized-inference.html" target="_blank">latecny optimized models</a> for more details.',
110
+
default: false,
111
+
optional: true,
112
+
additionalParams: true
103
113
}
104
114
]
105
115
}
@@ -122,6 +132,7 @@ class AWSChatBedrock_ChatModels implements INode {
0 commit comments