From b9416dc96a208562d58ae3b54b825c865067e2d5 Mon Sep 17 00:00:00 2001 From: Gabriel Altay Date: Fri, 1 Mar 2024 15:12:52 -0500 Subject: [PATCH] docs: update pinecone README to use PineconeVectorStore (#18170) --- libs/partners/pinecone/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/partners/pinecone/README.md b/libs/partners/pinecone/README.md index 00298ffa002..2141f74ce5b 100644 --- a/libs/partners/pinecone/README.md +++ b/libs/partners/pinecone/README.md @@ -15,12 +15,12 @@ And you should configure credentials by setting the following environment variab ## Usage -The `Pinecone` class exposes the connection to the Pinecone vector store. +The `PineconeVectorStore` class exposes the connection to the Pinecone vector store. ```python from langchain_pinecone import PineconeVectorStore embeddings = ... # use a LangChain Embeddings class -vectorstore = Pinecone(embeddings=embeddings) +vectorstore = PineconeVectorStore(embeddings=embeddings) ```