Add missing comment char "#" before Load in chain.py for the rag-pinecone-rerank template (#15209)

Without this additional `#`, one needs to add it manually after
uncommenting the section.
This commit is contained in:
Samuel Path
2024-01-01 23:01:06 +01:00
committed by GitHub
parent a4ae4bc361
commit 138f97af23

View File

@@ -19,7 +19,7 @@ if os.environ.get("PINECONE_ENVIRONMENT", None) is None:
PINECONE_INDEX_NAME = os.environ.get("PINECONE_INDEX", "langchain-test")
### Ingest code - you may need to run this the first time
# Load
# # Load
# from langchain.document_loaders import WebBaseLoader
# loader = WebBaseLoader("https://lilianweng.github.io/posts/2023-06-23-agent/")
# data = loader.load()