43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
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.bulk({
|
|
index: "jinaai-index",
|
|
operations: [
|
|
{
|
|
index: {
|
|
_index: "jinaai-index",
|
|
_id: "1",
|
|
},
|
|
},
|
|
{
|
|
content:
|
|
"Sarah Johnson is a talented marine biologist working at the Oceanographic Institute. Her groundbreaking research on coral reef ecosystems has garnered international attention and numerous accolades.",
|
|
},
|
|
{
|
|
index: {
|
|
_index: "jinaai-index",
|
|
_id: "2",
|
|
},
|
|
},
|
|
{
|
|
content:
|
|
"She spends months at a time diving in remote locations, meticulously documenting the intricate relationships between various marine species. ",
|
|
},
|
|
{
|
|
index: {
|
|
_index: "jinaai-index",
|
|
_id: "3",
|
|
},
|
|
},
|
|
{
|
|
content:
|
|
"Her dedication to preserving these delicate underwater environments has inspired a new generation of conservationists.",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|