From b3b68c3a38f4c09b9421c457463523d3d810b4cb Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 7 May 2024 18:29:42 -0300 Subject: [PATCH] Fixes Pinecone implementation (#1856) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ⬆️ (pyproject.toml): upgrade langchain-pinecone dependency to version 0.1.0 * 📝 (Pinecone.py): Update Pinecone component to use new DistanceStrategy enum for distance calculation and improve configuration options for Pinecone vector store creation. * ⬆️ (pyproject.toml): upgrade package version from 0.6.18 to 0.6.19 --- poetry.lock | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/poetry.lock b/poetry.lock index 174443c99..11fde07da 100644 --- a/poetry.lock +++ b/poetry.lock @@ -4443,6 +4443,22 @@ langchain-core = ">=0.1.40,<0.2.0" numpy = ">=1,<2" pinecone-client = ">=3.2.2,<4.0.0" +[[package]] +name = "langchain-pinecone" +version = "0.1.0" +description = "An integration package connecting Pinecone and LangChain" +optional = false +python-versions = "<3.13,>=3.8.1" +files = [ + {file = "langchain_pinecone-0.1.0-py3-none-any.whl", hash = "sha256:d957f27b1cceab425c3e8603c7a32533d4593ce8705242e78f6dc03aa71cf417"}, + {file = "langchain_pinecone-0.1.0.tar.gz", hash = "sha256:93f81e7c3926027cc6a87b001ee4d2e02a432a916709dbd395162b342bf84586"}, +] + +[package.dependencies] +langchain-core = ">=0.1.40,<0.2.0" +numpy = ">=1,<2" +pinecone-client = ">=3.2.2,<4.0.0" + [[package]] name = "langchain-text-splitters" version = "0.2.1"