Files
elasticsearch-js/docs/doc_examples/8edcd80d9b545a222dcc2f25ca4c6d5f.asciidoc
2024-07-29 17:10:05 -05:00

21 lines
534 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.searchApplication.search({
name: "my-search-app",
params: {
query_string:
"What is the most popular brand of coffee sold in the United States?",
elser_fields: ["title", "meta_description"],
text_fields: ["title", "meta_description"],
rrf: {
rank_window_size: 50,
rank_constant: 25,
},
},
});
console.log(response);
----