Files
elasticsearch-js/docs/doc_examples/a225fc8c134cb21a85bc6025dac9368b.asciidoc
2024-09-03 09:36:33 -05:00

19 lines
415 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.put({
task_type: "sparse_embedding",
inference_id: "elser_embeddings",
inference_config: {
service: "elser",
service_settings: {
num_allocations: 1,
num_threads: 1,
},
},
});
console.log(response);
----