36 lines
759 B
Plaintext
36 lines
759 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: "semantic-embeddings",
|
|
retriever: {
|
|
rrf: {
|
|
retrievers: [
|
|
{
|
|
standard: {
|
|
query: {
|
|
match: {
|
|
content: "How to avoid muscle soreness while running?",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
standard: {
|
|
query: {
|
|
semantic: {
|
|
field: "semantic_text",
|
|
query: "How to avoid muscle soreness while running?",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|