// 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); ----