Files
elasticsearch-js/docs/doc_examples/120fcf9f55128d6a81d5e87a9c235bbd.asciidoc
2025-01-28 11:52:01 -06:00

21 lines
440 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/chat_completion/openai-completion/_stream",
body: {
model: "gpt-4o",
messages: [
{
role: "user",
content: "What is Elastic?",
},
],
},
});
console.log(response);
----