28 lines
631 B
Plaintext
28 lines
631 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.search({
|
|
retriever: {
|
|
text_similarity_reranker: {
|
|
retriever: {
|
|
standard: {
|
|
query: {
|
|
match: {
|
|
text: "How often does the moon hide the sun?",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
field: "text",
|
|
inference_id: "elastic-rerank",
|
|
inference_text: "How often does the moon hide the sun?",
|
|
rank_window_size: 100,
|
|
min_score: 0.5,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|