-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Elastic Stack 8.x Cookbook
By :

In the Developing a question-answering application with generative AI recipe, we introduced the concept of RAG and demonstrated it through a simple application, built using Langchain, with Elasticsearch as the primary retriever. In this recipe, we’re taking things a step further by transforming our previous QA application into a fully-fledged chatbot. Along the way, we will introduce some very important concepts crucial for developing a production-ready RAG application.
Make sure that you have completed the following recipes:
This recipe requires the installation of the Natural Language Toolkit (NLTK) library; run the following command:
pip install nltk
The snippets of this recipe can be found at https://github.com/PacktPublishing/Elastic-Stack-8.x-Cookbook/blob/main...