File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/inference Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,12 @@ GET /_xpack/usage
210
210
"service": "elasticsearch",
211
211
"task_type": "SPARSE_EMBEDDING",
212
212
"count": 1
213
- }
213
+ },
214
+ {
215
+ "service": "elasticsearch",
216
+ "task_type": "TEXT_EMBEDDING",
217
+ "count": 1
218
+ },
214
219
]
215
220
},
216
221
"logstash" : {
Original file line number Diff line number Diff line change 44
44
- do :
45
45
inference.get :
46
46
inference_id : " *"
47
- - length : { endpoints: 1}
48
- - match : { endpoints.0.inference_id: ".elser-2" }
47
+ - length : { endpoints: 2}
48
+ - match : { endpoints.0.inference_id: ".default-multilingual-e5-small" }
49
+ - match : { endpoints.1.inference_id: ".elser-2" }
49
50
50
51
- do :
51
52
inference.get :
52
53
inference_id : _all
53
- - length : { endpoints: 1}
54
- - match : { endpoints.0.inference_id: ".elser-2" }
54
+ - length : { endpoints: 2}
55
55
56
56
- do :
57
57
inference.get :
58
58
inference_id : " "
59
- - length : { endpoints: 1}
60
- - match : { endpoints.0.inference_id: ".elser-2" }
59
+ - length : { endpoints: 2}
61
60
You can’t perform that action at this time.
0 commit comments