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
@@ -90,6 +91,40 @@ class ChatLitellm_ChatModels implements INode {
90
91
step: 1,
91
92
optional: true,
92
93
additionalParams: true
94
+
},
95
+
{
96
+
label: 'Allow Image Uploads',
97
+
name: 'allowImageUploads',
98
+
type: 'boolean',
99
+
description:
100
+
'Allow image input. Image uploads need a model marked supports_vision=true in LiteLLM. Refer to the <a href="https://docs.flowiseai.com/using-flowise/uploads#image" target="_blank">docs</a> for more details.',
101
+
default: false,
102
+
optional: true
103
+
},
104
+
{
105
+
label: 'Image Resolution',
106
+
description: 'This parameter controls the resolution in which the model views the image.',
107
+
name: 'imageResolution',
108
+
type: 'options',
109
+
options: [
110
+
{
111
+
label: 'Low',
112
+
name: 'low'
113
+
},
114
+
{
115
+
label: 'High',
116
+
name: 'high'
117
+
},
118
+
{
119
+
label: 'Auto',
120
+
name: 'auto'
121
+
}
122
+
],
123
+
default: 'low',
124
+
optional: false,
125
+
show: {
126
+
allowImageUploads: true
127
+
}
93
128
}
94
129
]
95
130
}
@@ -103,6 +138,8 @@ class ChatLitellm_ChatModels implements INode {
0 commit comments