noad.eth
noad.eth
CDCloudflare Developers
Created by noad.eth on 3/8/2025 in #vectorize
Hi. I just started using Vectorize this
Here is some example code showing what I had to do:
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) }
);
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) }
);
1 replies