bug fixed the wiring between embedding and memory write path
This commit is contained in:
@@ -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}]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user