2023-06-09 03:40:29 +02:00
|
|
|
const lancedb = require("vectordb");
|
2023-12-08 01:27:36 +01:00
|
|
|
const {
|
|
|
|
toChunks,
|
|
|
|
getLLMProvider,
|
|
|
|
getEmbeddingEngineSelection,
|
|
|
|
} = require("../../helpers");
|
2023-06-09 03:40:29 +02:00
|
|
|
const { OpenAIEmbeddings } = require("langchain/embeddings/openai");
|
|
|
|
const { RecursiveCharacterTextSplitter } = require("langchain/text_splitter");
|
2023-06-09 03:58:26 +02:00
|
|
|
const { storeVectorResult, cachedVectorInformation } = require("../../files");
|
2023-06-09 03:40:29 +02:00
|
|
|
const { v4: uuidv4 } = require("uuid");
|
|
|
|
|
|
|
|
const LanceDb = {
|
2023-06-14 22:35:55 +02:00
|
|
|
uri: `${
|
|
|
|
!!process.env.STORAGE_DIR ? `${process.env.STORAGE_DIR}/` : "./storage/"
|
|
|
|
}lancedb`,
|
2023-06-09 03:40:29 +02:00
|
|
|
name: "LanceDb",
|
|
|
|
connect: async function () {
|
|
|
|
if (process.env.VECTOR_DB !== "lancedb")
|
|
|
|
throw new Error("LanceDB::Invalid ENV settings");
|
|
|
|
|
|
|
|
const client = await lancedb.connect(this.uri);
|
|
|
|
return { client };
|
|
|
|
},
|
2023-10-30 20:46:38 +01:00
|
|
|
distanceToSimilarity: function (distance = null) {
|
|
|
|
if (distance === null || typeof distance !== "number") return 0.0;
|
|
|
|
if (distance >= 1.0) return 1;
|
|
|
|
if (distance <= 0) return 0;
|
|
|
|
return 1 - distance;
|
|
|
|
},
|
2023-06-09 03:40:29 +02:00
|
|
|
heartbeat: async function () {
|
|
|
|
await this.connect();
|
|
|
|
return { heartbeat: Number(new Date()) };
|
|
|
|
},
|
2023-07-20 22:09:56 +02:00
|
|
|
tables: async function () {
|
|
|
|
const fs = require("fs");
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const dirs = fs.readdirSync(client.uri);
|
|
|
|
return dirs.map((folder) => folder.replace(".lance", ""));
|
|
|
|
},
|
2023-09-21 21:04:17 +02:00
|
|
|
totalVectors: async function () {
|
2023-07-20 22:09:56 +02:00
|
|
|
const { client } = await this.connect();
|
|
|
|
const tables = await this.tables();
|
|
|
|
let count = 0;
|
|
|
|
for (const tableName of tables) {
|
|
|
|
const table = await client.openTable(tableName);
|
|
|
|
count += await table.countRows();
|
|
|
|
}
|
|
|
|
return count;
|
2023-06-09 03:40:29 +02:00
|
|
|
},
|
2023-07-25 19:37:04 +02:00
|
|
|
namespaceCount: async function (_namespace = null) {
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const exists = await this.namespaceExists(client, _namespace);
|
|
|
|
if (!exists) return 0;
|
|
|
|
|
|
|
|
const table = await client.openTable(_namespace);
|
|
|
|
return (await table.countRows()) || 0;
|
|
|
|
},
|
2023-07-20 21:05:23 +02:00
|
|
|
embedder: function () {
|
|
|
|
return new OpenAIEmbeddings({ openAIApiKey: process.env.OPEN_AI_KEY });
|
|
|
|
},
|
2023-11-07 01:49:29 +01:00
|
|
|
similarityResponse: async function (
|
|
|
|
client,
|
|
|
|
namespace,
|
|
|
|
queryVector,
|
|
|
|
similarityThreshold = 0.25
|
|
|
|
) {
|
2023-06-27 00:08:47 +02:00
|
|
|
const collection = await client.openTable(namespace);
|
|
|
|
const result = {
|
|
|
|
contextTexts: [],
|
|
|
|
sourceDocuments: [],
|
2023-10-30 20:46:38 +01:00
|
|
|
scores: [],
|
2023-06-27 00:08:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const response = await collection
|
|
|
|
.search(queryVector)
|
|
|
|
.metricType("cosine")
|
|
|
|
.limit(5)
|
|
|
|
.execute();
|
|
|
|
|
|
|
|
response.forEach((item) => {
|
2023-11-07 01:49:29 +01:00
|
|
|
if (this.distanceToSimilarity(item.score) < similarityThreshold) return;
|
2023-06-27 00:08:47 +02:00
|
|
|
const { vector: _, ...rest } = item;
|
|
|
|
result.contextTexts.push(rest.text);
|
|
|
|
result.sourceDocuments.push(rest);
|
2023-10-30 20:46:38 +01:00
|
|
|
result.scores.push(this.distanceToSimilarity(item.score));
|
2023-06-27 00:08:47 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
},
|
2023-06-09 03:40:29 +02:00
|
|
|
namespace: async function (client, namespace = null) {
|
|
|
|
if (!namespace) throw new Error("No namespace value provided.");
|
|
|
|
const collection = await client.openTable(namespace).catch(() => false);
|
|
|
|
if (!collection) return null;
|
|
|
|
|
|
|
|
return {
|
|
|
|
...collection,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
updateOrCreateCollection: async function (client, data = [], namespace) {
|
2023-07-20 22:09:56 +02:00
|
|
|
const hasNamespace = await this.hasNamespace(namespace);
|
|
|
|
if (hasNamespace) {
|
2023-06-09 03:40:29 +02:00
|
|
|
const collection = await client.openTable(namespace);
|
2023-06-14 09:27:19 +02:00
|
|
|
await collection.add(data);
|
2023-06-09 03:40:29 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-06-14 09:27:19 +02:00
|
|
|
await client.createTable(namespace, data);
|
2023-06-09 03:40:29 +02:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
hasNamespace: async function (namespace = null) {
|
|
|
|
if (!namespace) return false;
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const exists = await this.namespaceExists(client, namespace);
|
|
|
|
return exists;
|
|
|
|
},
|
2023-07-20 22:09:56 +02:00
|
|
|
namespaceExists: async function (_client, namespace = null) {
|
2023-06-09 03:40:29 +02:00
|
|
|
if (!namespace) throw new Error("No namespace value provided.");
|
2023-07-20 22:09:56 +02:00
|
|
|
const collections = await this.tables();
|
2023-06-09 03:40:29 +02:00
|
|
|
return collections.includes(namespace);
|
|
|
|
},
|
|
|
|
deleteVectorsInNamespace: async function (client, namespace = null) {
|
|
|
|
const fs = require("fs");
|
|
|
|
fs.rm(`${client.uri}/${namespace}.lance`, { recursive: true }, () => null);
|
|
|
|
return true;
|
|
|
|
},
|
2023-07-20 22:09:56 +02:00
|
|
|
deleteDocumentFromNamespace: async function (namespace, docId) {
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const exists = await this.namespaceExists(client, namespace);
|
|
|
|
if (!exists) {
|
|
|
|
console.error(
|
|
|
|
`LanceDB:deleteDocumentFromNamespace - namespace ${namespace} does not exist.`
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { DocumentVectors } = require("../../../models/vectors");
|
|
|
|
const table = await client.openTable(namespace);
|
2023-09-28 23:00:03 +02:00
|
|
|
const vectorIds = (await DocumentVectors.where({ docId })).map(
|
2023-07-20 22:09:56 +02:00
|
|
|
(record) => record.vectorId
|
2023-06-09 03:40:29 +02:00
|
|
|
);
|
2023-07-20 22:09:56 +02:00
|
|
|
|
2023-09-28 23:00:03 +02:00
|
|
|
if (vectorIds.length === 0) return;
|
2023-07-20 22:09:56 +02:00
|
|
|
await table.delete(`id IN (${vectorIds.map((v) => `'${v}'`).join(",")})`);
|
|
|
|
return true;
|
2023-06-09 03:40:29 +02:00
|
|
|
},
|
|
|
|
addDocumentToNamespace: async function (
|
|
|
|
namespace,
|
|
|
|
documentData = {},
|
|
|
|
fullFilePath = null
|
|
|
|
) {
|
2023-06-09 03:58:26 +02:00
|
|
|
const { DocumentVectors } = require("../../../models/vectors");
|
2023-06-09 03:40:29 +02:00
|
|
|
try {
|
|
|
|
const { pageContent, docId, ...metadata } = documentData;
|
|
|
|
if (!pageContent || pageContent.length == 0) return false;
|
|
|
|
|
|
|
|
console.log("Adding new vectorized document into namespace", namespace);
|
|
|
|
const cacheResult = await cachedVectorInformation(fullFilePath);
|
|
|
|
if (cacheResult.exists) {
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const { chunks } = cacheResult;
|
|
|
|
const documentVectors = [];
|
|
|
|
const submissions = [];
|
|
|
|
|
|
|
|
for (const chunk of chunks) {
|
|
|
|
chunk.forEach((chunk) => {
|
|
|
|
const id = uuidv4();
|
|
|
|
const { id: _id, ...metadata } = chunk.metadata;
|
|
|
|
documentVectors.push({ docId, vectorId: id });
|
|
|
|
submissions.push({ id: id, vector: chunk.values, ...metadata });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.updateOrCreateCollection(client, submissions, namespace);
|
|
|
|
await DocumentVectors.bulkInsert(documentVectors);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are here then we are going to embed and store a novel document.
|
|
|
|
// We have to do this manually as opposed to using LangChains `xyz.fromDocuments`
|
|
|
|
// because we then cannot atomically control our namespace to granularly find/remove documents
|
|
|
|
// from vectordb.
|
|
|
|
const textSplitter = new RecursiveCharacterTextSplitter({
|
2023-12-08 01:27:36 +01:00
|
|
|
chunkSize:
|
|
|
|
getEmbeddingEngineSelection()?.embeddingMaxChunkLength || 1_000,
|
2023-06-09 03:40:29 +02:00
|
|
|
chunkOverlap: 20,
|
|
|
|
});
|
|
|
|
const textChunks = await textSplitter.splitText(pageContent);
|
|
|
|
|
|
|
|
console.log("Chunks created from document:", textChunks.length);
|
2023-08-04 23:56:27 +02:00
|
|
|
const LLMConnector = getLLMProvider();
|
2023-06-09 03:40:29 +02:00
|
|
|
const documentVectors = [];
|
|
|
|
const vectors = [];
|
|
|
|
const submissions = [];
|
2023-08-04 23:56:27 +02:00
|
|
|
const vectorValues = await LLMConnector.embedChunks(textChunks);
|
2023-06-09 03:40:29 +02:00
|
|
|
|
2023-07-20 21:05:23 +02:00
|
|
|
if (!!vectorValues && vectorValues.length > 0) {
|
|
|
|
for (const [i, vector] of vectorValues.entries()) {
|
2023-06-09 03:40:29 +02:00
|
|
|
const vectorRecord = {
|
|
|
|
id: uuidv4(),
|
2023-07-20 21:05:23 +02:00
|
|
|
values: vector,
|
2023-06-09 03:40:29 +02:00
|
|
|
// [DO NOT REMOVE]
|
|
|
|
// LangChain will be unable to find your text if you embed manually and dont include the `text` key.
|
|
|
|
// https://github.com/hwchase17/langchainjs/blob/2def486af734c0ca87285a48f1a04c057ab74bdf/langchain/src/vectorstores/pinecone.ts#L64
|
2023-07-20 21:05:23 +02:00
|
|
|
metadata: { ...metadata, text: textChunks[i] },
|
2023-06-09 03:40:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
vectors.push(vectorRecord);
|
|
|
|
submissions.push({
|
|
|
|
id: vectorRecord.id,
|
|
|
|
vector: vectorRecord.values,
|
|
|
|
...vectorRecord.metadata,
|
|
|
|
});
|
|
|
|
documentVectors.push({ docId, vectorId: vectorRecord.id });
|
|
|
|
}
|
2023-07-20 21:05:23 +02:00
|
|
|
} else {
|
2023-10-26 19:57:37 +02:00
|
|
|
throw new Error(
|
|
|
|
"Could not embed document chunks! This document will not be recorded."
|
2023-07-20 21:05:23 +02:00
|
|
|
);
|
2023-06-09 03:40:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vectors.length > 0) {
|
|
|
|
const chunks = [];
|
|
|
|
for (const chunk of toChunks(vectors, 500)) chunks.push(chunk);
|
|
|
|
|
|
|
|
console.log("Inserting vectorized chunks into LanceDB collection.");
|
|
|
|
const { client } = await this.connect();
|
|
|
|
await this.updateOrCreateCollection(client, submissions, namespace);
|
|
|
|
await storeVectorResult(chunks, fullFilePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
await DocumentVectors.bulkInsert(documentVectors);
|
|
|
|
return true;
|
|
|
|
} catch (e) {
|
2023-08-22 19:30:01 +02:00
|
|
|
console.error(e);
|
2023-06-09 03:40:29 +02:00
|
|
|
console.error("addDocumentToNamespace", e.message);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
2023-11-06 22:13:53 +01:00
|
|
|
performSimilaritySearch: async function ({
|
|
|
|
namespace = null,
|
|
|
|
input = "",
|
|
|
|
LLMConnector = null,
|
2023-11-07 01:49:29 +01:00
|
|
|
similarityThreshold = 0.25,
|
2023-11-06 22:13:53 +01:00
|
|
|
}) {
|
|
|
|
if (!namespace || !input || !LLMConnector)
|
|
|
|
throw new Error("Invalid request to performSimilaritySearch.");
|
2023-06-09 03:40:29 +02:00
|
|
|
|
|
|
|
const { client } = await this.connect();
|
|
|
|
if (!(await this.namespaceExists(client, namespace))) {
|
|
|
|
return {
|
2023-11-06 22:13:53 +01:00
|
|
|
contextTexts: [],
|
2023-06-09 03:40:29 +02:00
|
|
|
sources: [],
|
|
|
|
message: "Invalid query - no documents found for workspace!",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-08-04 23:56:27 +02:00
|
|
|
const queryVector = await LLMConnector.embedTextInput(input);
|
2023-06-27 00:08:47 +02:00
|
|
|
const { contextTexts, sourceDocuments } = await this.similarityResponse(
|
|
|
|
client,
|
|
|
|
namespace,
|
2023-11-07 01:49:29 +01:00
|
|
|
queryVector,
|
|
|
|
similarityThreshold
|
2023-06-27 00:08:47 +02:00
|
|
|
);
|
|
|
|
|
2023-11-06 22:13:53 +01:00
|
|
|
const sources = sourceDocuments.map((metadata, i) => {
|
|
|
|
return { metadata: { ...metadata, text: contextTexts[i] } };
|
2023-10-30 23:44:03 +01:00
|
|
|
});
|
2023-06-09 03:40:29 +02:00
|
|
|
return {
|
2023-11-06 22:13:53 +01:00
|
|
|
contextTexts,
|
|
|
|
sources: this.curateSources(sources),
|
2023-06-09 03:40:29 +02:00
|
|
|
message: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
"namespace-stats": async function (reqBody = {}) {
|
|
|
|
const { namespace = null } = reqBody;
|
|
|
|
if (!namespace) throw new Error("namespace required");
|
|
|
|
const { client } = await this.connect();
|
|
|
|
if (!(await this.namespaceExists(client, namespace)))
|
|
|
|
throw new Error("Namespace by that name does not exist.");
|
|
|
|
const stats = await this.namespace(client, namespace);
|
|
|
|
return stats
|
|
|
|
? stats
|
|
|
|
: { message: "No stats were able to be fetched from DB for namespace" };
|
|
|
|
},
|
|
|
|
"delete-namespace": async function (reqBody = {}) {
|
|
|
|
const { namespace = null } = reqBody;
|
|
|
|
const { client } = await this.connect();
|
|
|
|
if (!(await this.namespaceExists(client, namespace)))
|
|
|
|
throw new Error("Namespace by that name does not exist.");
|
|
|
|
|
|
|
|
await this.deleteVectorsInNamespace(client, namespace);
|
|
|
|
return {
|
|
|
|
message: `Namespace ${namespace} was deleted.`,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
reset: async function () {
|
|
|
|
const { client } = await this.connect();
|
|
|
|
const fs = require("fs");
|
|
|
|
fs.rm(`${client.uri}`, { recursive: true }, () => null);
|
|
|
|
return { reset: true };
|
|
|
|
},
|
2023-07-28 21:05:38 +02:00
|
|
|
curateSources: function (sources = []) {
|
|
|
|
const documents = [];
|
|
|
|
for (const source of sources) {
|
2023-11-06 22:13:53 +01:00
|
|
|
const { text, vector: _v, score: _s, ...rest } = source;
|
|
|
|
const metadata = rest.hasOwnProperty("metadata") ? rest.metadata : rest;
|
2023-07-28 21:05:38 +02:00
|
|
|
if (Object.keys(metadata).length > 0) {
|
2023-11-06 22:13:53 +01:00
|
|
|
documents.push({
|
|
|
|
...metadata,
|
|
|
|
...(text ? { text } : {}),
|
|
|
|
});
|
2023-07-28 21:05:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return documents;
|
|
|
|
},
|
2023-06-09 03:40:29 +02:00
|
|
|
};
|
|
|
|
|
2023-06-09 20:27:27 +02:00
|
|
|
module.exports.LanceDb = LanceDb;
|