38 lines
722 B
Plaintext
38 lines
722 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({
|
|
index: "my-index",
|
|
retriever: {
|
|
rrf: {
|
|
retrievers: [
|
|
{
|
|
standard: {
|
|
query: {
|
|
term: {
|
|
text: "shoes",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
standard: {
|
|
query: {
|
|
semantic: {
|
|
field: "semantic_field",
|
|
query: "shoes",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
rank_window_size: 50,
|
|
rank_constant: 20,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|