Files
elasticsearch-js/docs/doc_examples/968fb5b92aa65af09544f7c002b0953e.asciidoc
2024-09-23 14:54:43 -05:00

17 lines
366 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",
query: {
semantic: {
field: "content",
query: "How to avoid muscle soreness while running?",
},
},
});
console.log(response);
----