Replies: 2 comments 5 replies
-
You'll need to use the Something like this will work: const pineconeStore = new PineconeStore(new OpenAIEmbeddings(), {
pineconeIndex: index
});
await pineconeStore.addDocuments(
docs,
ids
); |
Beta Was this translation helpful? Give feedback.
2 replies
-
Did you manage to find a solution? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm uploading documents to
Pinecone
using:But every time I upload the same documents, it creates additional vectors in the store. I know there's a way to specify a
key
to only upsert docs.I've tried specifying the
textKey
property in thefromDocuments
but that isn't working.Should I be doing this a different way?
Beta Was this translation helpful? Give feedback.
All reactions