28 lines
481 B
Plaintext
28 lines
481 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.rankEval({
|
|
index: "my-index-000001",
|
|
requests: [
|
|
{
|
|
id: "JFK query",
|
|
request: {
|
|
query: {
|
|
match_all: {},
|
|
},
|
|
},
|
|
ratings: [],
|
|
},
|
|
],
|
|
metric: {
|
|
recall: {
|
|
k: 20,
|
|
relevant_rating_threshold: 1,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|