Files
elasticsearch-js/docs/doc_examples/310bdfb0d0d75bac7bff036a3fe51d4d.asciidoc
2024-09-30 13:41:23 -05:00

22 lines
492 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.ingest.putPipeline({
id: "azure_ai_studio_embeddings_pipeline",
processors: [
{
inference: {
model_id: "azure_ai_studio_embeddings",
input_output: {
input_field: "content",
output_field: "content_embedding",
},
},
},
],
});
console.log(response);
----