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

23 lines
460 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: "my-byte-quantized-index",
mappings: {
properties: {
my_vector: {
type: "dense_vector",
dims: 3,
index: true,
index_options: {
type: "int8_hnsw",
},
},
},
},
});
console.log(response);
----