Files
elasticsearch-js/docs/doc_examples/4b91ad7c9b44e07db4a4e81390f19ad3.asciidoc
2025-03-20 01:00:58 +00:00

13 lines
323 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.inference.streamInference({
task_type: "completion",
inference_id: "openai-completion",
input: "What is Elastic?",
});
console.log(response);
----