Pinecone Database
# pip install "pinecone[grpc]" from pinecone.grpc import PineconeGRPC as Pinecone pc = Pinecone(api_key="YOUR_API_KEY") index = pc.Index("docs-example") index.delete(ids=["id-1", "id-2"], namespace='example-namespace')
{}
The delete operation deletes vectors, by id, from a single namespace.
delete
For guidance and examples, see Delete data.
An API Key is required to call Pinecone APIs. Get yours from the console.
The request for the Delete operation.
Delete
A successful response.
The response for the Delete operation.
Was this page helpful?