File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,29 @@ const providers: Provider[] = [
129
129
projectSettings . textVectorizer . name ===
130
130
error . pluginDetails . alias
131
131
)
132
+ case PluginTypes . ImageVectorizer :
133
+ return (
134
+ projectSettings . imageVectorizer ?. name ===
135
+ error . pluginDetails . alias
136
+ )
137
+ case PluginTypes . MultimodalVectorizer :
138
+ return (
139
+ projectSettings . imageVectorizer ?. name ===
140
+ error . pluginDetails . alias ||
141
+ projectSettings . textVectorizer . name ===
142
+ error . pluginDetails . alias
143
+ )
144
+ case PluginTypes . Reranker :
145
+ return (
146
+ projectSettings . reranker ?. name === error . pluginDetails . alias
147
+ )
148
+ case PluginTypes . Generative :
149
+ return (
150
+ ! ! projectSettings . generative &&
151
+ projectSettings . generative . name === error . pluginDetails . alias
152
+ )
153
+ case PluginTypes . FileParser :
154
+ return true
132
155
default :
133
156
return false
134
157
}
You can’t perform that action at this time.
0 commit comments