// 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.index({ index: "music", id: 1, refresh: "true", document: { suggest: [ { input: "Nevermind", weight: 10, }, { input: "Nirvana", weight: 3, }, ], }, }); console.log(response); ----