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

18 lines
414 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_application",
params: {
knn_field: "image-vector",
query_vector: [-5, 9, -12],
k: 10,
num_candidates: 100,
fields: ["title", "file-type"],
},
});
console.log(response);
----