22 lines
440 B
Plaintext
22 lines
440 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: "semantic-embeddings",
|
|
mappings: {
|
|
properties: {
|
|
semantic_text: {
|
|
type: "semantic_text",
|
|
},
|
|
content: {
|
|
type: "text",
|
|
copy_to: "semantic_text",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|