const body = embeddings .map((embedding, idx) => JSON.stringify({ id: `${idx + 1}`, values: embedding, }) ) .join("\n");const response = await client.vectorize.indexes.insert( "example-index", { account_id: ACCOUNT_ID, body: "OVERRIDDEN BELOW", }, { body: Buffer.from(body) });