pinecone icon indicating copy to clipboard operation
pinecone copied to clipboard

Pinecone HTTP delete endpoint deprecated for deleting vectors

Open RobinBeekhof opened this issue 4 months ago • 0 comments

when calling delete vectors

index = %Pinecone.Index{name: "index_id"} Pinecone.delete_vectors(index, ["vector_id"])

I get the following error:

[warning] Failed pinecone request: %Req.Response{status: 405, headers: %{"connection" => ["keep-alive"], "content-length" => ["0"], "date" => ["Sun, 25 Feb 2024 19:01:20 GMT"], "server" => ["envoy"]}, body: "", trailers: %{}, private: %{}} {:error, ""}

I noticed that Pinecone has deprecated its HTTP Delete in favor of HTTP Post for deleting vectors https://docs.pinecone.io/reference/delete1

RobinBeekhof avatar Feb 26 '24 08:02 RobinBeekhof