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