We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93928d commit 9f7947eCopy full SHA for 9f7947e
plugin/src/test/java/org/opensearch/ml/plugin/DummyWrongTool.java
@@ -5,6 +5,7 @@
5
6
package org.opensearch.ml.plugin;
7
8
+import java.util.List;
9
import java.util.Map;
10
11
import org.opensearch.core.action.ActionListener;
@@ -104,5 +105,11 @@ public String getDefaultType() {
104
105
public String getDefaultVersion() {
106
return null;
107
}
108
+
109
+ @Override
110
+ public List<String> getRelatedModelIDKeyFields() {
111
+ return List.of();
112
+ }
113
114
115
0 commit comments