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

53 lines
851 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-knn-index",
mappings: {
properties: {
"my-vector": {
type: "dense_vector",
dims: 3,
index: true,
similarity: "l2_norm",
},
},
},
});
console.log(response);
const response1 = await client.bulk({
index: "my-knn-index",
refresh: "true",
operations: [
{
index: {
_id: "1",
},
},
{
"my-vector": [1, 5, -20],
},
{
index: {
_id: "2",
},
},
{
"my-vector": [42, 8, -15],
},
{
index: {
_id: "3",
},
},
{
"my-vector": [15, 11, 23],
},
],
});
console.log(response1);
----