LangChain

February 2024

In this page, I will share my experiences learning LangChain.

Some info on my setup:

Reference Documentation Used:

There were a couple of issues I encountered right off the gate:

The second issue was on the 'Retrieval Chain' Section of the quickstart, speficically on this import:

from langchain_community.document_loaders import WebBaseLoader

The error I received was ModuleNotFoundError: No module named 'pwd'

The solution to this was found in these 2 places:

https://github.com/langchain-ai/langchain/issues/17514

https://github.com/langchain-ai/langchain/issues/17651

  The solution I went with was to modify the code in the 'pebblo.py' file (lines 262 through 268 with the conditional import pwd) and commented out line 5 (import pwd). 

Summary:

Overall I found the Quikckstart as a helpful start on Langchain