Files
elasticsearch-js/docs/doc_examples/5836b09198feb1269ed12839b416123d.asciidoc
2025-01-13 10:08:05 -06:00

17 lines
352 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: "jinaai-index",
query: {
semantic: {
field: "content",
query: "who inspired taking care of the sea?",
},
},
});
console.log(response);
----