Files
elasticsearch-js/docs/doc_examples/41d24383d29b2808a65258a0a3256e96.asciidoc
2025-01-13 10:06:57 -06:00

19 lines
388 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: "jinaai-index",
mappings: {
properties: {
content: {
type: "semantic_text",
inference_id: "jinaai-embeddings",
},
},
},
});
console.log(response);
----