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

22 lines
494 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: "google_vertex_ai_embeddings_pipeline",
processors: [
{
inference: {
model_id: "google_vertex_ai_embeddings",
input_output: {
input_field: "content",
output_field: "content_embedding",
},
},
},
],
});
console.log(response);
----