Files
elasticsearch-js/docs/doc_examples/4b91ad7c9b44e07db4a4e81390f19ad3.asciidoc
2025-01-07 12:52:21 -06:00

15 lines
346 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.transport.request({
method: "POST",
path: "/_inference/completion/openai-completion/_stream",
body: {
input: "What is Elastic?",
},
});
console.log(response);
----