Bugfix/PineconeArgumentError (#2322)

* add source tag to pinecone

* update pinecone
This commit is contained in:
Henry Heng
2024-05-05 00:52:04 +01:00
committed by GitHub
parent 5a137a478c
commit f9195b6a68
4 changed files with 4 additions and 8 deletions
@@ -233,8 +233,7 @@ class PineconeVectorStore implements VectorStore {
private async getDb(): Promise<Pinecone> {
if (!this.db) {
this.db = new Pinecone({
apiKey: this.apiKey,
sourceTag: 'flowise'
apiKey: this.apiKey
})
}
return Promise.resolve(this.db)