Files
elasticsearch-js/docs/doc_examples/2a9d3119a9e26e29220be436b9382955.asciidoc
2024-07-29 17:10:05 -05:00

24 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.indices.create({
index: "mistral-embeddings",
mappings: {
properties: {
content_embedding: {
type: "dense_vector",
dims: 1024,
element_type: "float",
similarity: "dot_product",
},
content: {
type: "text",
},
},
},
});
console.log(response);
----