Chore/Pinecone Version Upgrade (#2310)

add source tag to pinecone
This commit is contained in:
Henry Heng
2024-05-03 15:46:50 +01:00
committed by GitHub
parent 2254d16c3a
commit 9971627821
6 changed files with 32189 additions and 32189 deletions
@@ -233,7 +233,8 @@ class PineconeVectorStore implements VectorStore {
private async getDb(): Promise<Pinecone> {
if (!this.db) {
this.db = new Pinecone({
apiKey: this.apiKey
apiKey: this.apiKey,
sourceTag: 'flowise'
})
}
return Promise.resolve(this.db)