aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/vectorstore
diff options
context:
space:
mode:
authoralyssaf16 <alyssa_feinberg@brown.edu>2024-11-12 01:01:23 -0500
committeralyssaf16 <alyssa_feinberg@brown.edu>2024-11-12 01:01:23 -0500
commitc358fba1ee2aa54a97373d07e7b218c74dfd9bf0 (patch)
treea3f7dea094e70a5f9549b43c21eadc23e0be8ab6 /src/client/views/nodes/chatbot/vectorstore
parent1e4909f04fdcc4c0b3a60b8c75e8b687e2b63b8e (diff)
flashcards w assistant finally workgit add -A
Diffstat (limited to 'src/client/views/nodes/chatbot/vectorstore')
-rw-r--r--src/client/views/nodes/chatbot/vectorstore/Vectorstore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/chatbot/vectorstore/Vectorstore.ts b/src/client/views/nodes/chatbot/vectorstore/Vectorstore.ts
index 5ed784559..cf7fa0ff3 100644
--- a/src/client/views/nodes/chatbot/vectorstore/Vectorstore.ts
+++ b/src/client/views/nodes/chatbot/vectorstore/Vectorstore.ts
@@ -44,7 +44,7 @@ export class Vectorstore {
// Initialize Pinecone and Cohere clients with API keys from the environment.
this.pinecone = new Pinecone({ apiKey: pineconeApiKey });
- this.cohere = new CohereClient({ token: process.env.COHERE_API_KEY });
+ // this.cohere = new CohereClient({ token: process.env.COHERE_API_KEY });
this._id = id;
this._doc_ids = doc_ids();
this.initializeIndex();