-
Notifications
You must be signed in to change notification settings - Fork 253
RAG: Multi-Query Retriever with Langchain Notebook #157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RAG: Multi-Query Retriever with Langchain Notebook #157
Conversation
notebooks/langchain/multi-query-retriever-examples/chatbot-with-multi-query-retriever.ipynb
Show resolved
Hide resolved
| } | ||
| ], | ||
| "source": [ | ||
| "!python3 -m pip install -qU lark elasticsearch langchain openai\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the jq package needs to be installed as well, required by the JSONLoader class. Also tiktoken is needed for the text splitting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@miguelgrinberg : Added the packages. I am wondering why I did not received any errors for not adding these packages.
notebooks/langchain/multi-query-retriever-examples/chatbot-with-multi-query-retriever.ipynb
Show resolved
Hide resolved
notebooks/langchain/multi-query-retriever-examples/langchain-multi-query-retriever.ipynb
Show resolved
Hide resolved
notebooks/langchain/multi-query-retriever-examples/langchain-multi-query-retriever.ipynb
Show resolved
Hide resolved
miguelgrinberg
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but you may want to update the deprecated symbols.
closes #https://github.com/elastic/enterprise-search-team/issues/6203
This PR contains