Open mrajsingh opened 9 months ago
Sure @mrajsingh, many of these folders are based on a bit older Langchain version. They definitely need upgrade. Is it possible for you to submit these changes and corresponding requirements.txt
once this bot starts working locally?
@yogeshhk Sure. I can do that.
Hi,
I got warnings for importing few classes from langchain. Seems that some classes were deprecated from langchain and moved to langchain_community. (Reference)
Example Warning:
I got rid of such warnings by importing few clasess from langchain_community instead of langchain in main_driver.py.
from langchain_community.document_loaders import WikipediaLoader
from langchain_community.vectorstores import Chroma
And for importing VertexAIEmbeedings, the warning was:
So, installing langchain-google-vertexai and using below import resolved the above warning.
from langchain_google_vertexai import VertexAIEmbeddings
Perhaps needs an update in the master branch code of ask_wikipedia to use the langchain_community for imports of relevant classes?