We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug .delete() action from PineconeVectorStore not working.
To Reproduce Ran a test here, I called delete from a separate call to test and it does not delete the doc from Pinecone:
const nodeId = "5bb16627-f6c0-459c-bb18-71642813ef21"; const pcvs = new PineconeVectorStore({ indexName: 'index-1', namespace: 'test', }); const doc = new Document({ id_: nodeId, text: 'Hello world.', }) const storageContext = await storageContextFromDefaults({ vectorStore: pcvs, }); await VectorStoreIndex.fromDocuments([doc], { storageContext, }); await pcvs.delete(nodeId);
Expected behavior Should have deleted doc from storage
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
.delete() action from PineconeVectorStore not working.
To Reproduce
Ran a test here, I called delete from a separate call to test and it does not delete the doc from Pinecone:
Expected behavior
Should have deleted doc from storage
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: