bug fixed the wiring between embedding and memory write path

This commit is contained in:
Storme-bit
2026-04-05 00:20:40 -07:00
parent ed18022d1f
commit ddd251cd5a
4 changed files with 275 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ async function collectionExists(name) {
//SQLite ID stored here to be able to link back to original data
async function upsertVector(collection, id, vector, payload = {}) {
const client = getClient();
await client.upsertVector(collection, {
await client.upsert(collection, {
wait: true, // Wait for the operation to complete before returning
points: [{id, vector, payload}]
});