2023-06-04 04:28:07 +02:00
|
|
|
const { PineconeClient } = require("@pinecone-database/pinecone");
|
|
|
|
const { RecursiveCharacterTextSplitter } = require("langchain/text_splitter");
|
2023-06-09 03:58:26 +02:00
|
|
|
const { storeVectorResult, cachedVectorInformation } = require("../../files");
|
2023-06-08 06:31:35 +02:00
|
|
|
const { v4: uuidv4 } = require("uuid");
|
2023-12-08 01:27:36 +01:00
|
|
|
const {
|
|
|
|
toChunks,
|
|
|
|
getLLMProvider,
|
|
|
|
getEmbeddingEngineSelection,
|
|
|
|
} = require("../../helpers");
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const Pinecone = {
|
2023-06-08 22:13:48 +02:00
|
|
|
name: "Pinecone",
|
2023-06-04 04:28:07 +02:00
|
|
|
connect: async function () {
|
2023-06-08 22:13:48 +02:00
|
|
|
if (process.env.VECTOR_DB !== "pinecone")
|
|
|
|
throw new Error("Pinecone::Invalid ENV settings");
|
|
|
|
|
2023-06-04 04:28:07 +02:00
|
|
|
const client = new PineconeClient();
|
|
|
|
await client.init({
|
|
|
|
apiKey: process.env.PINECONE_API_KEY,
|
|
|
|
environment: process.env.PINECONE_ENVIRONMENT,
|
|
|
|
});
|
|
|
|
const pineconeIndex = client.Index(process.env.PINECONE_INDEX);
|
2023-06-08 06:31:35 +02:00
|
|
|
const { status } = await client.describeIndex({
|
|
|
|
indexName: process.env.PINECONE_INDEX,
|
|
|
|
});
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!status.ready) throw new Error("Pinecode::Index not ready.");
|
2023-06-04 04:28:07 +02:00
|
|
|
return { client, pineconeIndex, indexName: process.env.PINECONE_INDEX };
|
|
|
|
},
|
2023-09-21 21:04:17 +02:00
|
|
|
totalVectors: async function () {
|
2023-06-04 04:28:07 +02:00
|
|
|
const { pineconeIndex } = await this.connect();
|
|
|
|
const { namespaces } = await pineconeIndex.describeIndexStats1();
|
2023-06-08 06:31:35 +02:00
|
|
|
return Object.values(namespaces).reduce(
|
|
|
|
(a, b) => a + (b?.vectorCount || 0),
|
|
|
|
0
|
|
|
|
);
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-07-25 19:37:04 +02:00
|
|
|
namespaceCount: async function (_namespace = null) {
|
|
|
|
const { pineconeIndex } = await this.connect();
|
|
|
|
const namespace = await this.namespace(pineconeIndex, _namespace);
|
|
|
|
return namespace?.vectorCount || 0;
|
|
|
|
},
|
2023-11-07 01:49:29 +01:00
|
|
|
similarityResponse: async function (
|
|
|
|
index,
|
|
|
|
namespace,
|
|
|
|
queryVector,
|
2024-01-18 21:34:20 +01:00
|
|
|
similarityThreshold = 0.25,
|
|
|
|
topN = 4
|
2023-11-07 01:49:29 +01:00
|
|
|
) {
|
2023-06-27 00:08:47 +02:00
|
|
|
const result = {
|
|
|
|
contextTexts: [],
|
|
|
|
sourceDocuments: [],
|
2023-10-30 20:46:38 +01:00
|
|
|
scores: [],
|
2023-06-27 00:08:47 +02:00
|
|
|
};
|
|
|
|
const response = await index.query({
|
|
|
|
queryRequest: {
|
|
|
|
namespace,
|
|
|
|
vector: queryVector,
|
2024-01-18 21:34:20 +01:00
|
|
|
topK: topN,
|
2023-06-27 00:08:47 +02:00
|
|
|
includeMetadata: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
response.matches.forEach((match) => {
|
2023-11-07 01:49:29 +01:00
|
|
|
if (match.score < similarityThreshold) return;
|
2023-06-27 00:08:47 +02:00
|
|
|
result.contextTexts.push(match.metadata.text);
|
|
|
|
result.sourceDocuments.push(match);
|
2023-10-30 20:46:38 +01:00
|
|
|
result.scores.push(match.score);
|
2023-06-27 00:08:47 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
},
|
2023-11-07 01:49:29 +01:00
|
|
|
|
2023-06-04 04:28:07 +02:00
|
|
|
namespace: async function (index, namespace = null) {
|
|
|
|
if (!namespace) throw new Error("No namespace value provided.");
|
|
|
|
const { namespaces } = await index.describeIndexStats1();
|
2023-06-08 06:31:35 +02:00
|
|
|
return namespaces.hasOwnProperty(namespace) ? namespaces[namespace] : null;
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
hasNamespace: async function (namespace = null) {
|
|
|
|
if (!namespace) return false;
|
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
return await this.namespaceExists(pineconeIndex, namespace);
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
namespaceExists: async function (index, namespace = null) {
|
|
|
|
if (!namespace) throw new Error("No namespace value provided.");
|
|
|
|
const { namespaces } = await index.describeIndexStats1();
|
2023-06-08 06:31:35 +02:00
|
|
|
return namespaces.hasOwnProperty(namespace);
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
deleteVectorsInNamespace: async function (index, namespace = null) {
|
2023-06-08 06:31:35 +02:00
|
|
|
await index.delete1({ namespace, deleteAll: true });
|
|
|
|
return true;
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
addDocumentToNamespace: async function (
|
|
|
|
namespace,
|
|
|
|
documentData = {},
|
|
|
|
fullFilePath = null
|
|
|
|
) {
|
2023-06-09 03:58:26 +02:00
|
|
|
const { DocumentVectors } = require("../../../models/vectors");
|
2023-06-04 04:28:07 +02:00
|
|
|
try {
|
2023-06-08 06:31:35 +02:00
|
|
|
const { pageContent, docId, ...metadata } = documentData;
|
2023-06-04 04:28:07 +02:00
|
|
|
if (!pageContent || pageContent.length == 0) return false;
|
|
|
|
|
|
|
|
console.log("Adding new vectorized document into namespace", namespace);
|
2023-06-08 06:31:35 +02:00
|
|
|
const cacheResult = await cachedVectorInformation(fullFilePath);
|
2023-06-04 04:28:07 +02:00
|
|
|
if (cacheResult.exists) {
|
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
const { chunks } = cacheResult;
|
|
|
|
const documentVectors = [];
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
for (const chunk of chunks) {
|
|
|
|
// Before sending to Pinecone and saving the records to our db
|
|
|
|
// we need to assign the id of each chunk that is stored in the cached file.
|
|
|
|
const newChunks = chunk.map((chunk) => {
|
2023-06-08 06:31:35 +02:00
|
|
|
const id = uuidv4();
|
2023-06-04 04:28:07 +02:00
|
|
|
documentVectors.push({ docId, vectorId: id });
|
2023-06-08 06:31:35 +02:00
|
|
|
return { ...chunk, id };
|
|
|
|
});
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
// Push chunks with new ids to pinecone.
|
|
|
|
await pineconeIndex.upsert({
|
|
|
|
upsertRequest: {
|
|
|
|
vectors: [...newChunks],
|
|
|
|
namespace,
|
2023-06-08 06:31:35 +02:00
|
|
|
},
|
|
|
|
});
|
2023-06-04 04:28:07 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
await DocumentVectors.bulkInsert(documentVectors);
|
2024-01-18 20:40:48 +01:00
|
|
|
return { vectorized: true, error: null };
|
2023-06-04 04:28:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 `PineconeStore.fromDocuments`
|
|
|
|
// because we then cannot atomically control our namespace to granularly find/remove documents
|
|
|
|
// from vectordb.
|
|
|
|
// https://github.com/hwchase17/langchainjs/blob/2def486af734c0ca87285a48f1a04c057ab74bdf/langchain/src/vectorstores/pinecone.ts#L167
|
2023-06-08 06:31:35 +02:00
|
|
|
const textSplitter = new RecursiveCharacterTextSplitter({
|
2023-12-08 01:27:36 +01:00
|
|
|
chunkSize:
|
|
|
|
getEmbeddingEngineSelection()?.embeddingMaxChunkLength || 1_000,
|
2023-06-08 06:31:35 +02:00
|
|
|
chunkOverlap: 20,
|
|
|
|
});
|
|
|
|
const textChunks = await textSplitter.splitText(pageContent);
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
console.log("Chunks created from document:", textChunks.length);
|
2023-08-04 23:56:27 +02:00
|
|
|
const LLMConnector = getLLMProvider();
|
2023-06-08 06:31:35 +02:00
|
|
|
const documentVectors = [];
|
|
|
|
const vectors = [];
|
2023-08-04 23:56:27 +02:00
|
|
|
const vectorValues = await LLMConnector.embedChunks(textChunks);
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-07-20 21:05:23 +02:00
|
|
|
if (!!vectorValues && vectorValues.length > 0) {
|
|
|
|
for (const [i, vector] of vectorValues.entries()) {
|
2023-06-04 04:28:07 +02:00
|
|
|
const vectorRecord = {
|
|
|
|
id: uuidv4(),
|
2023-07-20 21:05:23 +02:00
|
|
|
values: vector,
|
2023-06-04 04:28:07 +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-08 06:31:35 +02:00
|
|
|
};
|
2023-07-20 21:05:23 +02:00
|
|
|
|
2023-06-04 04:28:07 +02:00
|
|
|
vectors.push(vectorRecord);
|
|
|
|
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-04 04:28:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vectors.length > 0) {
|
2023-06-08 06:31:35 +02:00
|
|
|
const chunks = [];
|
2023-06-04 04:28:07 +02:00
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
console.log("Inserting vectorized chunks into Pinecone.");
|
2023-06-04 04:28:07 +02:00
|
|
|
for (const chunk of toChunks(vectors, 100)) {
|
2023-06-08 06:31:35 +02:00
|
|
|
chunks.push(chunk);
|
2023-06-04 04:28:07 +02:00
|
|
|
await pineconeIndex.upsert({
|
|
|
|
upsertRequest: {
|
|
|
|
vectors: [...chunk],
|
|
|
|
namespace,
|
2023-06-08 06:31:35 +02:00
|
|
|
},
|
|
|
|
});
|
2023-06-04 04:28:07 +02:00
|
|
|
}
|
2023-06-08 06:31:35 +02:00
|
|
|
await storeVectorResult(chunks, fullFilePath);
|
2023-06-04 04:28:07 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
await DocumentVectors.bulkInsert(documentVectors);
|
2024-01-18 20:40:48 +01:00
|
|
|
return { vectorized: true, error: null };
|
2023-06-04 04:28:07 +02:00
|
|
|
} catch (e) {
|
2023-06-08 06:31:35 +02:00
|
|
|
console.error("addDocumentToNamespace", e.message);
|
2024-01-18 20:40:48 +01:00
|
|
|
return { vectorized: false, error: e.message };
|
2023-06-04 04:28:07 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
deleteDocumentFromNamespace: async function (namespace, docId) {
|
2023-06-09 03:58:26 +02:00
|
|
|
const { DocumentVectors } = require("../../../models/vectors");
|
2023-06-04 04:28:07 +02:00
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!(await this.namespaceExists(pineconeIndex, namespace))) return;
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-09-28 23:00:03 +02:00
|
|
|
const knownDocuments = await DocumentVectors.where({ docId });
|
2023-06-04 04:28:07 +02:00
|
|
|
if (knownDocuments.length === 0) return;
|
|
|
|
|
|
|
|
const vectorIds = knownDocuments.map((doc) => doc.vectorId);
|
2023-08-22 18:25:55 +02:00
|
|
|
for (const batchOfVectorIds of toChunks(vectorIds, 1000)) {
|
|
|
|
await pineconeIndex.delete1({
|
|
|
|
ids: batchOfVectorIds,
|
|
|
|
namespace,
|
|
|
|
});
|
|
|
|
}
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const indexes = knownDocuments.map((doc) => doc.id);
|
2023-06-08 06:31:35 +02:00
|
|
|
await DocumentVectors.deleteIds(indexes);
|
2023-06-04 04:28:07 +02:00
|
|
|
return true;
|
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
"namespace-stats": async function (reqBody = {}) {
|
|
|
|
const { namespace = null } = reqBody;
|
2023-06-04 04:28:07 +02:00
|
|
|
if (!namespace) throw new Error("namespace required");
|
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!(await this.namespaceExists(pineconeIndex, namespace)))
|
|
|
|
throw new Error("Namespace by that name does not exist.");
|
|
|
|
const stats = await this.namespace(pineconeIndex, namespace);
|
|
|
|
return stats
|
|
|
|
? stats
|
|
|
|
: { message: "No stats were able to be fetched from DB" };
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
"delete-namespace": async function (reqBody = {}) {
|
|
|
|
const { namespace = null } = reqBody;
|
2023-06-04 04:28:07 +02:00
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!(await this.namespaceExists(pineconeIndex, namespace)))
|
|
|
|
throw new Error("Namespace by that name does not exist.");
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const details = await this.namespace(pineconeIndex, namespace);
|
|
|
|
await this.deleteVectorsInNamespace(pineconeIndex, namespace);
|
2023-06-08 06:31:35 +02:00
|
|
|
return {
|
|
|
|
message: `Namespace ${namespace} was deleted along with ${details.vectorCount} vectors.`,
|
|
|
|
};
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
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,
|
2024-01-18 21:34:20 +01:00
|
|
|
topN = 4,
|
2023-11-06 22:13:53 +01:00
|
|
|
}) {
|
|
|
|
if (!namespace || !input || !LLMConnector)
|
|
|
|
throw new Error("Invalid request to performSimilaritySearch.");
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const { pineconeIndex } = await this.connect();
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!(await this.namespaceExists(pineconeIndex, namespace)))
|
|
|
|
throw new Error(
|
2023-11-06 22:13:53 +01:00
|
|
|
"Invalid namespace - has it been collected and populated yet?"
|
2023-06-08 06:31:35 +02:00
|
|
|
);
|
2023-06-04 04:28:07 +02:00
|
|
|
|
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(
|
2023-06-08 06:31:35 +02:00
|
|
|
pineconeIndex,
|
|
|
|
namespace,
|
2023-11-07 01:49:29 +01:00
|
|
|
queryVector,
|
2024-01-18 21:34:20 +01:00
|
|
|
similarityThreshold,
|
|
|
|
topN
|
2023-06-27 00:08:47 +02:00
|
|
|
);
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-11-06 22:13:53 +01:00
|
|
|
const sources = sourceDocuments.map((metadata, i) => {
|
|
|
|
return { ...metadata, text: contextTexts[i] };
|
|
|
|
});
|
2023-06-27 00:08:47 +02:00
|
|
|
return {
|
2023-11-06 22:13:53 +01:00
|
|
|
contextTexts,
|
|
|
|
sources: this.curateSources(sources),
|
2023-06-27 00:08:47 +02:00
|
|
|
message: false,
|
|
|
|
};
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-07-28 21:05:38 +02:00
|
|
|
curateSources: function (sources = []) {
|
|
|
|
const documents = [];
|
|
|
|
for (const source of sources) {
|
|
|
|
const { metadata = {} } = source;
|
|
|
|
if (Object.keys(metadata).length > 0) {
|
|
|
|
documents.push({
|
|
|
|
...metadata,
|
|
|
|
...(source.hasOwnProperty("pageContent")
|
|
|
|
? { text: source.pageContent }
|
|
|
|
: {}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return documents;
|
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
};
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 22:13:48 +02:00
|
|
|
module.exports.Pinecone = Pinecone;
|