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

37 lines
723 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: "passage_vectors",
mappings: {
properties: {
full_text: {
type: "text",
},
creation_time: {
type: "date",
},
paragraph: {
type: "nested",
properties: {
vector: {
type: "dense_vector",
dims: 2,
index_options: {
type: "hnsw",
},
},
text: {
type: "text",
index: false,
},
},
},
},
},
});
console.log(response);
----