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

23 lines
453 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: "byte-image-index",
mappings: {
properties: {
"byte-image-vector": {
type: "dense_vector",
element_type: "byte",
dims: 2,
},
title: {
type: "text",
},
},
},
});
console.log(response);
----